aboutsummaryrefslogtreecommitdiff
path: root/internal/source
diff options
context:
space:
mode:
authorJonathan Amsterdam <jba@google.com>2020-07-16 18:21:49 -0400
committerJonathan Amsterdam <jba@google.com>2020-07-17 13:38:46 +0000
commit186838c49289a00aac7afdb2de7566cec04c7d2a (patch)
tree433c9a29008b17d1a91f523d148cdd58874cd236 /internal/source
parentcd77657e37bccec90f1ecdfb90bd1a98f154f098 (diff)
downloadgo-x-pkgsite-186838c49289a00aac7afdb2de7566cec04c7d2a.tar.xz
internal/source: use better github raw template
Replace the previous github template for raw data (raw.githubusercontent...) with a new one that is more uniform (the same as the blob template, with "raw" instead of "blob"). The main advantage is that we can drop the "repoPath" parameter to the template, which was necessary only to support the unusual GitHub URLs. Now that GitHub and GitLab templates are identical, we can drop the GitLab ones. We preserve "gitlab" in the map from kinds to templates so we can continue to unmarshal DB modules.source_info columns that use "gitlab". Change-Id: Id3d45929f0eb2c040109449d4208279cca44f079 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/243217 Reviewed-by: Julie Qiu <julie@golang.org>
Diffstat (limited to 'internal/source')
-rw-r--r--internal/source/source.go50
-rw-r--r--internal/source/source_test.go24
-rw-r--r--internal/source/testdata/TestModuleInfo.replay2649
3 files changed, 1805 insertions, 918 deletions
diff --git a/internal/source/source.go b/internal/source/source.go
index af9f0748..deb7f2bd 100644
--- a/internal/source/source.go
+++ b/internal/source/source.go
@@ -26,7 +26,6 @@ import (
"fmt"
"html/template"
"net/http"
- "net/url"
"path"
"regexp"
"strconv"
@@ -101,8 +100,7 @@ func (i *Info) LineURL(pathname string, line int) string {
}
// RawURL returns a URL referring to the raw contents of a file relative to the
-// module's home directory. In addition to the usual variables, it supports
-// {repoPath}, which is the repo URL's path.
+// module's home directory.
func (i *Info) RawURL(pathname string) string {
if i == nil {
return ""
@@ -111,13 +109,6 @@ func (i *Info) RawURL(pathname string) string {
if i.templates.Raw == "" {
return ""
}
- u, err := url.Parse(i.repoURL)
- if err != nil {
- // This should never happen. If it does, note it and soldier on.
- log.Errorf(context.TODO(), "repo URL %q failed to parse: %v", i.repoURL, err)
- u = &url.URL{Path: "ERROR"}
- }
-
moduleDir := i.moduleDir
// Special case: the standard library's source module path is set to "src",
// which is correct for source file links. But the README is at the repo
@@ -129,17 +120,16 @@ func (i *Info) RawURL(pathname string) string {
moduleDir = ""
}
return expand(i.templates.Raw, map[string]string{
- "repo": i.repoURL,
- "repoPath": strings.TrimPrefix(u.Path, "/"),
- "commit": i.commit,
- "file": path.Join(moduleDir, pathname),
+ "repo": i.repoURL,
+ "commit": i.commit,
+ "file": path.Join(moduleDir, pathname),
})
}
// map of common urlTemplates
var urlTemplatesByKind = map[string]urlTemplates{
"github": githubURLTemplates,
- "gitlab": gitlabURLTemplates,
+ "gitlab": githubURLTemplates, // preserved for backwards compatibility (DB still has source_info->Kind = "gitlab")
"bitbucket": bitbucketURLTemplates,
}
@@ -170,6 +160,12 @@ func (i *Info) MarshalJSON() (_ []byte, err error) {
break
}
}
+ // We used to use different templates for GitHub and GitLab. Now that
+ // they're the same, prefer "github" for consistency (map random iteration
+ // order means we could get either here).
+ if ji.Kind == "gitlab" {
+ ji.Kind = "github"
+ }
if ji.Kind == "" && i.templates != (urlTemplates{}) {
ji.Templates = &i.templates
}
@@ -452,16 +448,16 @@ var patterns = []struct {
// Patterns that are not (yet) part of the go command.
{
regexp.MustCompile(`^(?P<repo>gitlab\.com/[a-z0-9A-Z_.\-]+/[a-z0-9A-Z_.\-]+)`),
- gitlabURLTemplates,
+ githubURLTemplates,
},
{
// Assume that any site beginning "gitlab." works like gitlab.com.
regexp.MustCompile(`^(?P<repo>gitlab\.[a-z0-9A-Z.-]+/[a-z0-9A-Z_.\-]+/[a-z0-9A-Z_.\-]+)(\.git|$)`),
- gitlabURLTemplates,
+ githubURLTemplates,
},
{
regexp.MustCompile(`^(?P<repo>gitee\.com/[a-z0-9A-Z_.\-]+/[a-z0-9A-Z_.\-]+)(\.git|$)`),
- gitlabURLTemplates,
+ githubURLTemplates,
},
// Patterns that match the general go command pattern, where they must have
@@ -518,13 +514,6 @@ var (
Directory: "{repo}/tree/{commit}/{dir}",
File: "{repo}/blob/{commit}/{file}",
Line: "{repo}/blob/{commit}/{file}#L{line}",
- Raw: "https://raw.githubusercontent.com/{repoPath}/{commit}/{file}",
- }
-
- gitlabURLTemplates = urlTemplates{
- Directory: "{repo}/tree/{commit}/{dir}",
- File: "{repo}/blob/{commit}/{file}",
- Line: "{repo}/blob/{commit}/{file}#L{line}",
Raw: "{repo}/raw/{commit}/{file}",
}
@@ -580,14 +569,3 @@ func NewGitHubInfo(repoURL, moduleDir, commit string) *Info {
templates: githubURLTemplates,
}
}
-
-// NewGitLabInfo creates a source.Info with GitHub URL templates.
-// It is for testing only.
-func NewGitLabInfo(repoURL, moduleDir, commit string) *Info {
- return &Info{
- repoURL: repoURL,
- moduleDir: moduleDir,
- commit: commit,
- templates: gitlabURLTemplates,
- }
-}
diff --git a/internal/source/source_test.go b/internal/source/source_test.go
index 0799bb6d..3998f0e1 100644
--- a/internal/source/source_test.go
+++ b/internal/source/source_test.go
@@ -81,7 +81,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/pkg/errors/tree/v0.8.1",
"https://github.com/pkg/errors/blob/v0.8.1/errors.go",
"https://github.com/pkg/errors/blob/v0.8.1/errors.go#L1",
- "https://raw.githubusercontent.com/pkg/errors/v0.8.1/errors.go",
+ "https://github.com/pkg/errors/raw/v0.8.1/errors.go",
},
{
"github module not at repo root",
@@ -91,7 +91,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/hashicorp/consul/tree/sdk/v0.2.0/sdk",
"https://github.com/hashicorp/consul/blob/sdk/v0.2.0/sdk/freeport/freeport.go",
"https://github.com/hashicorp/consul/blob/sdk/v0.2.0/sdk/freeport/freeport.go#L1",
- "https://raw.githubusercontent.com/hashicorp/consul/sdk/v0.2.0/sdk/freeport/freeport.go",
+ "https://github.com/hashicorp/consul/raw/sdk/v0.2.0/sdk/freeport/freeport.go",
},
{
"bitbucket",
@@ -111,7 +111,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/airbrake/gobrake/tree/v3.5.1",
"https://github.com/airbrake/gobrake/blob/v3.5.1/gobrake.go",
"https://github.com/airbrake/gobrake/blob/v3.5.1/gobrake.go#L1",
- "https://raw.githubusercontent.com/airbrake/gobrake/v3.5.1/gobrake.go",
+ "https://github.com/airbrake/gobrake/raw/v3.5.1/gobrake.go",
},
{
"x/tools",
@@ -121,7 +121,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/golang/tools/tree/030b2cf1153e",
"https://github.com/golang/tools/blob/030b2cf1153e/README.md",
"https://github.com/golang/tools/blob/030b2cf1153e/README.md#L1",
- "https://raw.githubusercontent.com/golang/tools/030b2cf1153e/README.md",
+ "https://github.com/golang/tools/raw/030b2cf1153e/README.md",
},
{
"x/tools/gopls",
@@ -131,7 +131,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/golang/tools/tree/gopls/v0.4.0/gopls",
"https://github.com/golang/tools/blob/gopls/v0.4.0/gopls/main.go",
"https://github.com/golang/tools/blob/gopls/v0.4.0/gopls/main.go#L1",
- "https://raw.githubusercontent.com/golang/tools/gopls/v0.4.0/gopls/main.go",
+ "https://github.com/golang/tools/raw/gopls/v0.4.0/gopls/main.go",
},
{
"googlesource.com",
@@ -151,7 +151,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/apache/thrift/tree/v0.12.0",
"https://github.com/apache/thrift/blob/v0.12.0/lib/go/thrift/client.go",
"https://github.com/apache/thrift/blob/v0.12.0/lib/go/thrift/client.go#L1",
- "https://raw.githubusercontent.com/apache/thrift/v0.12.0/lib/go/thrift/client.go",
+ "https://github.com/apache/thrift/raw/v0.12.0/lib/go/thrift/client.go",
},
{
"vanity for github",
@@ -161,7 +161,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/googleapis/google-cloud-go/tree/spanner/v1.0.0/spanner",
"https://github.com/googleapis/google-cloud-go/blob/spanner/v1.0.0/spanner/doc.go",
"https://github.com/googleapis/google-cloud-go/blob/spanner/v1.0.0/spanner/doc.go#L1",
- "https://raw.githubusercontent.com/googleapis/google-cloud-go/spanner/v1.0.0/spanner/doc.go",
+ "https://github.com/googleapis/google-cloud-go/raw/spanner/v1.0.0/spanner/doc.go",
},
{
"vanity for bitbucket",
@@ -221,7 +221,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/jrick/wsrpc/tree/v2.1.1",
"https://github.com/jrick/wsrpc/blob/v2.1.1/rpc.go",
"https://github.com/jrick/wsrpc/blob/v2.1.1/rpc.go#L1",
- "https://raw.githubusercontent.com/jrick/wsrpc/v2.1.1/rpc.go",
+ "https://github.com/jrick/wsrpc/raw/v2.1.1/rpc.go",
},
{
"v2 as subdirectory",
@@ -241,7 +241,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/go-yaml/yaml/tree/v2.2.2",
"https://github.com/go-yaml/yaml/blob/v2.2.2/yaml.go",
"https://github.com/go-yaml/yaml/blob/v2.2.2/yaml.go#L1",
- "https://raw.githubusercontent.com/go-yaml/yaml/v2.2.2/yaml.go",
+ "https://github.com/go-yaml/yaml/raw/v2.2.2/yaml.go",
},
{
"gopkg.in, two elements",
@@ -251,7 +251,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/boltdb/bolt/tree/v1.3.0",
"https://github.com/boltdb/bolt/blob/v1.3.0/doc.go",
"https://github.com/boltdb/bolt/blob/v1.3.0/doc.go#L1",
- "https://raw.githubusercontent.com/boltdb/bolt/v1.3.0/doc.go",
+ "https://github.com/boltdb/bolt/raw/v1.3.0/doc.go",
},
{
"gonum.org",
@@ -261,7 +261,7 @@ func TestModuleInfo(t *testing.T) {
"https://github.com/gonum/gonum/tree/v0.6.1",
"https://github.com/gonum/gonum/blob/v0.6.1/doc.go",
"https://github.com/gonum/gonum/blob/v0.6.1/doc.go#L1",
- "https://raw.githubusercontent.com/gonum/gonum/v0.6.1/doc.go",
+ "https://github.com/gonum/gonum/raw/v0.6.1/doc.go",
},
} {
t.Run(test.desc, func(t *testing.T) {
@@ -288,7 +288,7 @@ func TestModuleInfo(t *testing.T) {
}
const (
file = "doc/gopher/fiveyears.jpg"
- want = "https://raw.githubusercontent.com/golang/go/go1.13.3/doc/gopher/fiveyears.jpg"
+ want = "https://github.com/golang/go/raw/go1.13.3/doc/gopher/fiveyears.jpg"
)
check(t, "raw", info.RawURL(file), want)
})
diff --git a/internal/source/testdata/TestModuleInfo.replay b/internal/source/testdata/TestModuleInfo.replay
index b8f5dea9..dcea2d69 100644
--- a/internal/source/testdata/TestModuleInfo.replay
+++ b/internal/source/testdata/TestModuleInfo.replay
@@ -29,7 +29,7 @@
},
"Entries": [
{
- "ID": "2dba90e84bbfc9ab",
+ "ID": "191f554e9ad13ba4",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go",
@@ -56,16 +56,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:22 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"324455a9fc6f20dedb1d0d2df69af563\""
+ "W/\"41f46b915f22785138b38830a50dfc9d\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -74,9 +74,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=KmpjerjuBJy3%2BJpUSZZx7YR%2B%2Bm8m%2BQ5Iiijf%2FfpRlzOQxdTGZBSKYfpliI%2Bs4h6NWYy62cIXtryXrZ1Z5fzP5iuTCPSEW8gtVWzxk0Fb8U6C3UmBdAihZFAyJO1gpPPUF1udyLlFkz3AaA4lJPZS70xiwEvnCZ11Ky21PFNQH35X0g7%2Bv3xaCeIoN357rbb5gHznehO%2BNyk5eb4FZ9gbOFnK%2BOsVQxnAETWdnBjxEWClhyJK6Qmjh9ukGJpemrvHGaFizX0E1RaDss%2BUKVn4Hg%3D%3D--Cz%2BGhNowYF9wXqlb--N93ABH7mJ%2FJqiRGi1qiKdg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.457726835.1592439201; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:21 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:21 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=IQdzNyizx%2Fx1H36o07Hp%2BDDEzlVHTjgAb3qOyhWVl%2BvFM56v99gTYEep3JQVUrqcuWOltPb%2FgIRi8YF1liGJHvh330Tq21nJvlZFmw80m8Apo9itC9PlRLp4bqvwvCNU7GiYXqP1ZJRiNw7YLiP2COmnAm82hLUc98vkIPUTxAuSHKmdfC2VXpFh4KtgTaHOtr9vM0sq320mW%2B3%2BKfvspz9YRC%2FpYw50FnI6pmoEyi4u%2Fz0KY23Kh0xN8HxjGgUGo0ulXuiWsS3nEPlrcvLAaw%3D%3D--zP6XHW5upzC53%2B%2Fs--D20MHiPsopccSrzTe9YKVw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1748368610.1594935293; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:53 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:53 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -94,7 +94,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC4B:1D9B119:5EEAB1A1"
+ "7960:5415:97B602:E28DFC:5F10C7FD"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -104,7 +104,7 @@
}
},
{
- "ID": "4e3d9eb51755a2d5",
+ "ID": "22bd621b2af965f5",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/tree/go1.12/src",
@@ -131,16 +131,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:22 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"182f84f9e0bb3b39bb6a1181544a8656\""
+ "W/\"2bf1d39c9af32bbd492d5454201acb1f\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -149,9 +149,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=rbly2oGKP4OWtVjvw9k25uWrTlO3RLrghZoytQkr7a7AcsLFQ02mYRn2ZXDmc2Oj%2FSoKVCcJxUuk6fKqfwl8V6yo%2FD897aBIqjS9FY42UnvQi60CuZt1qQNPEAePrdilUpkXxmjWP7AAhz2JfJxU27Ygvk4dVFFlHhjE0uwy3Me%2BE068%2BFtCjTx6%2FeS1RQt%2B4zb7plZmIjobMOUlBWy2wx4SquqHAnsFrMLiOBqANZbb3KFEBUPp2EO99gHOHulxC%2B1YIWs9iAcsT2l%2BnkmNOA%3D%3D--9ZJd9eIWoGM8scRG--ePnvrYdBk7rIM5bF8RYVEA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2026698142.1592439202; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=xYHeK23ausThRiY6BIZX2IZ37kiQJGJiInMNFafxE%2Blg4fDNnxDhnWFb26xNQu65LrxtXnHt%2FL%2BaADrKAj8npBBQsiYf9ThqcZv4%2FHus7wsFsGSoC5isBNBjg1VtujM%2F%2F445OAgLFZZ9f6e5g8CPVXV8wB7fvxCdB%2FmxU3MsKmoBw9oG6TEIjfNTb%2FdQHYrBVoyV5gRHPEzkxb2vVj0SKPoBT0w%2Fs6uK3egU3kDt9pPlXXELtOQ671QrjI2oSjRUVgrRMdT3PC2wLdBEhTR3dw%3D%3D--i2VtX%2FDNcm%2BTUayw--7eHuFPG4G6h3iahWCFYqNQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.2001100436.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -169,7 +169,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC5C:1D9B13E:5EEAB1A2"
+ "7960:5415:97B639:E28E50:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -179,7 +179,7 @@
}
},
{
- "ID": "9ecfac3ada4f5ae0",
+ "ID": "a02be460feb3872c",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/blob/go1.12/src/bytes/buffer.go",
@@ -206,16 +206,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:22 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"45023a2cb6b6af416e1f1b1f87f7d240\""
+ "W/\"cb583d378c7cd9c0330ef538d7844b02\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -224,9 +224,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=NarBE4Caqv9DWNGBbPk5fslJwIGyPb0n%2Fes5JCDsgDaeoSYvXo2rIkc6W0kU%2FMCMYLMCavZ7JiyiVttLfzlBJPDGNwtuLZKiDsU9TYtWU%2BkHMvO1sBss6i%2FWMu3%2FPVYYAwqN%2FIZ4MtWXc9opCX7jmoq7Laaf%2BvZG6oo1uqfBMjrGGlcSNsZ6ooga6ZPZ6gey8LxGZ9wHpYj91B3yDkd9X%2F7IPON06EV6oACYMddXg3B6hFfdOgxBMWliYLEqLLyMcNRNH%2BpHi0MQiCaecOdk4g%3D%3D--aPAUBFwp8CSu%2BiKA--m9e7gnBqG89x%2F6LWXtavGw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.671025697.1592439202; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=VAia9WxDDmrOReq6iCw%2B3KfmK5mpH377zXE8fDaFTSsujcxnUiHn938Yv89b4wcnWKEIeOCYZLFBHDOd1ysse0UUHCg0zOOPmx5QQ1mfIDgA0tl4qPtb%2FHKmMyrzm68jfxjvT0lgtyXiAGShcyK%2FtftKPFW4tNKzk6GcrRmNpw4mGiiqa9aiX%2FwQI132PhRry4AZ1ONUcQFg1yu7qF5Y8LNdNmasQ6BQ8LFzqqHU4Nuio0YZ0nD5o6Srpls6lU03Dk22Db9GnfYPvt3Dx%2F568g%3D%3D--yKIBddbnbOMKY0Bf--RzLwV1LPb3UlAVqdBQT80g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1762206056.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -244,7 +244,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC66:1D9B14A:5EEAB1A2"
+ "7960:5415:97B650:E28E76:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -254,7 +254,7 @@
}
},
{
- "ID": "6d50bd89b531a6b4",
+ "ID": "0ec54d4d632e1817",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/blob/go1.12/src/bytes/buffer.go",
@@ -281,16 +281,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:22 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"45023a2cb6b6af416e1f1b1f87f7d240\""
+ "W/\"cb583d378c7cd9c0330ef538d7844b02\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -299,9 +299,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=yRVU5Wu%2F1KaDzQQSqPj2ypHUSSZ%2B79Yf%2FL9Zn0UL5zsnBQtF%2FBeG9v78wmIKHPVM6G6nf6JlJm%2B%2B5s97COLr8%2F%2FuLoxEBS5p%2B6lhln0DFZjt4zBuUfClQY8BUlShmdcZ1ql14tuKHCvmViZlK2HdFiEr%2BKaQdqS2hm2eVJws3F5NeUqTpnia%2FFfNXk%2BM2MtF7yY1eWKjPwRPrqkTYQOF8eONQeCN9ulfFocXpeDfH%2FJBqs2H1qn%2FN4iBkqC%2F5DjwOIn4n%2FrBg%2B2GVIxjatKMQQ%3D%3D--GFcqYH2NcOLROWfV--WQBV6iuarHF59j%2BGmg0afA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.975117405.1592439202; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=NWhR38m2vn8lNA8skMg%2F9zhGAmC9ZyUiLIhUpeOxT3hUgqqb62OmgJo4W9NrNTPAI1h1ApTyB06Iy7%2BUDI079XGLjktE%2FAW1LqKE6q901xsfLu%2FRsUhAMi%2BUGANPg9tJrcVEe6rFGvlwPavKlaXM8d3ECYoZtf1iLZP9TJYTcLz%2BKGgmUoO3iOf%2FA177xj%2BLbKCfdIws%2BtdTBufW7BIhPGQbdy9j1sDLss%2FiUxyfJdvhlyefHZykesnRl6UVPCZuJzG0ELmki11h2GKkbUiY5g%3D%3D--8AB8sUBSvGdTV5vm--lhc%2FjYRQfSi%2FXUfna2Z2pQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.816237731.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -319,7 +319,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC70:1D9B160:5EEAB1A2"
+ "7960:5415:97B66D:E28EA4:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -329,7 +329,7 @@
}
},
{
- "ID": "51de42e1a904fe2f",
+ "ID": "31967f076d2a46d7",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go",
@@ -356,16 +356,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:22 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"324455a9fc6f20dedb1d0d2df69af563\""
+ "W/\"41f46b915f22785138b38830a50dfc9d\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -374,9 +374,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=eKzUzzOQlb%2FIEesSBesoDuXoWhSjQvd6v1s%2Fyz1HbWyfXPXcecmNxeEKTAe0CsyRhm4HX6li9SvYuSgVKg63EloXACXCyUGNT1J7Ss%2F4lMb8TYZwwVAyXTbox4dznpvnC1%2FIp49rZ4mL4ynsST%2BzKSTUJnXP6SudL9FLQLtxMNGg39tPDFFUXPc6OlfzgSRNDnfoYPhPaMvjKz48pW2JPiHtves6GzQgBvtucMWGWaxFiV6bATDH4vuz7gHI7Gp0KQckQj4%2FAZT60tNS8lFbhw%3D%3D--z58G8z2fZZs4f3cV--tbujKUWCOEshIRYGQ46Q1A%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1548669338.1592439202; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=Wk7m1r8c7MARVdk%2B7zhYYOVEbm6286Vu1pFNviRme0U7DDnT8aACZFYlqw5ffkmuUKMIlUbDfgpu2cH4Q0ontBH1D5ToIIpne4IUmUGFU%2BYTbEsIl5LE0yAQzX658PJuJMwKrGPtZB9UpOuD8ATaProVZpzg0kiQCyzwyrgrLAjo1faWJIflSQR2Hs7bWDnuBynGLJ6o3lf9aCoPabravxytK9gPU3E4liNur86xc6uK%2FoKmNYFl%2B%2FE2zABOm2nlwSG1d6Rmb7g8UaWKlkwdzg%3D%3D--PPt%2F9SIK1tlVZUfF--fWdwHrAbe1dEcDjnFTjUGA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1366953774.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -394,7 +394,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC73:1D9B162:5EEAB1A2"
+ "7960:5415:97B671:E28EA9:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -404,7 +404,7 @@
}
},
{
- "ID": "afb9798acc54af7e",
+ "ID": "f49a94315b5b164c",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/tree/go1.3/src/pkg",
@@ -431,16 +431,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:23 GMT"
+ "Thu, 16 Jul 2020 21:34:54 GMT"
],
"Etag": [
- "W/\"231642232fb8338c867dd3e2f54c914e\""
+ "W/\"28358cfe5a6c44cf750c6bc4d3c72dae\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -449,9 +449,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=T%2BK3pZzZobJLRA1IroiT3GkQK63KdXZzlH%2BSbHUhjeeuJ9Vpw5D1JMtEp%2FennWq%2BcK0xqqMt53MQRsWFplXaJ98mrmDfe40vlKXSYoU4793fK2HKk3fWBQ0Um5IfmuEDlpyhutcUsAUgjARfoWD9E2IAIOmBSvtsn61wgbAyMBr3i2nh4tZ1KN46nqercykRSZz7SW%2BOCOvFaOD4JSaL7KD%2FqTXoeGFveMIoKrd%2F9vBGAAcnoHknDbWZ6cwM21xXjKAB2KXdfKVl4otc3ohtgA%3D%3D--wAkM07MhyLTnBCLa--XOpOBPJufIrNgG9BWbaoqw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.342683878.1592439202; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:22 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=XmKkz2GaebxQ0kDFkhLmE6P1x5KRIbAa9ICsAmiDr2%2FkFZMXw2SYzFWVFyeugYz7r5%2Bnf3y8hsrs0qbO9MNHWepgG0zxvQMfgDSjDwy15FPe0isKkT%2BpLvT2FHxNpRKJKAyoXoM7YsDmlTOhjhJhCT9pC4RgxWwCr%2BNi96dMtXPZ0HZ7hVrVXF1Lo8aRP7kenzBljL0CvgWCFL8D6GxjeKC2u3PEX8dBVoVg34eKEGx6juEvFZ7cIDamgLu70H3T65PCbqU9t6KbIYN6LfgB%2Bw%3D%3D--Ynq9zd%2BclAmUNb6F--pDaGLfFB7%2Bl9xLkR%2BuUXeg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.175350814.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -469,7 +469,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC75:1D9B165:5EEAB1A2"
+ "7960:5415:97B672:E28EAF:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -479,7 +479,7 @@
}
},
{
- "ID": "90d6523e5b858067",
+ "ID": "54b5121b236f68db",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/blob/go1.3/src/pkg/bytes/buffer.go",
@@ -506,16 +506,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:23 GMT"
+ "Thu, 16 Jul 2020 21:34:55 GMT"
],
"Etag": [
- "W/\"3e1d31ccd152c8909718bc233d77bcb3\""
+ "W/\"41ae900460250470d4cb3fb1a9f0b26d\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -524,9 +524,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=CguFMFhpTJ8ZCUQ5h%2FODZIVqbQTsr0GKgGXgrfAnR1wDXympsi2KkApdZXGnCa8PSXmaAXPuoDWvpSj6MV2AQPt4OcEGRKlxrPUmTR1WkPNhv%2BIVOuMIERYe9IlB%2B%2B%2BvdmOwOA%2BViiw7xKqJyUtmW1%2Fzp5URLA%2BWdA6gLiy68MvQsk3HZZ0PpW0bprQHrT8Od4gzNWk3gICNBkRJ1ln23v5pZoIFTEWnNvfgitB6U%2FXyWOAO4fLyJUpUruEW%2BcEBGYxCD76lyHn30rgStaVFoQ%3D%3D--Qb862s3zp9USw2Cd--8m0%2Fi9xiFa%2BEV%2FSOcMm1pA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1072001237.1592439203; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=6uOpFw2ox2YysZmuEKVFMt5oAH27qezpg1HYClrWv1zJXleFcBm%2F4PpKdoCKigigfd9oJYXlPitJ0W4SoqPNS%2B4sczGGUjuK7XJEuu8WSmX%2FtD9Ou%2B5SqMj5dLpTB8lReTrSB67z7Ucb4ooYvw89PiQA4XgW5cR5kS5HiVns3EyY%2Bu41ySci0GRsoRUIvEPh28Lcq1MTW0NSMbSlLpCrgoRVooJ3nfRnmomDNGaVK3kPIUF2pCRGBL%2FTu3Ik59aGokokmE6ZezJvfF905FN%2BoA%3D%3D--yCItUOTGQKD85cJp--nJKWmFRThRjvqlc2Lsf2tg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.121605343.1594935294; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:54 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -544,7 +544,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC7C:1D9B16C:5EEAB1A3"
+ "7960:5415:97B690:E28EE6:5F10C7FE"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -554,7 +554,7 @@
}
},
{
- "ID": "2418f87fd8f9b22b",
+ "ID": "291a073f7366e461",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/go/blob/go1.3/src/pkg/bytes/buffer.go",
@@ -581,16 +581,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:23 GMT"
+ "Thu, 16 Jul 2020 21:34:55 GMT"
],
"Etag": [
- "W/\"3e1d31ccd152c8909718bc233d77bcb3\""
+ "W/\"41ae900460250470d4cb3fb1a9f0b26d\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -599,9 +599,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=vwRE9YgfYcrPcOY9P3KsNhBMXkgybxojwseHS4LOP1IlizMPHpk5PT6yaMfutcbpvWnCqsWk7lhvaLnXiO4uUAkjybC6Idxy3kPGkoirsz%2BGOZiwTdHEnWblcnOKDNC%2FS1HOhDGKqndcbgb9SVJikZ8SE46vfX7nVQRBnzObNC9SKO0xjeE59V5%2FKS7FAy8AwOkllsi9VDon6ldHLekjDJ051dxQqgGUyshb9FMuzbyiC7BxbtdbL1kapH4wkLr2lqLOGt%2Fpdmm7mpaR4%2BL4cg%3D%3D--cCLqkMY4MhmSilfR--lhbuIk25GTB98nd8yVtUqw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1029132245.1592439203; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=V9ebNJMGGxMR5WxoNSW6upu5%2FLFy0WXzYr3msnnxFpMmHPthn7%2F0YZBqnaYpkNfBNHykkrjD3TScRbAZew%2FGh1FWOUVedW7oqTr2r9FsWlN5AzbXdwVlm1Ux8LdBuWlik3S6vIpvNDiatzsr464xHEE6Kru2cAUc5fQ4ROCuotawVArg6ktv%2BUtN8e5%2BHRU2fJ%2FONHcDqRbTA5Nx2%2BZFkEvISKzwCLM6BYjUrhe5MJFANNWe4NiJ0%2Bhw%2BhLmMMQC9A4NalhXAmcm193b9PwTRw%3D%3D--E6WyYJ6OUvuv2bnM--Cx%2B%2FaBG1Gb69IPfqBDMV9A%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1489296946.1594935295; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -619,7 +619,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC84:1D9B17A:5EEAB1A3"
+ "7960:5415:97B6BA:E28F27:5F10C7FF"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -629,7 +629,7 @@
}
},
{
- "ID": "e65356edd0b54c23",
+ "ID": "799738d45eb4d888",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/pkg/errors",
@@ -656,16 +656,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:23 GMT"
+ "Thu, 16 Jul 2020 21:34:55 GMT"
],
"Etag": [
- "W/\"cc15fde68a354a1c485cb15e3dee6c22\""
+ "W/\"3c4078651d594c1728ea34e5eda6085a\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -674,9 +674,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=PiIa97O8j34LkPXsdUKdpog8irG5qN8oKipgsvvoBgRh1y5qNOMmrpcPmHAudV9qjsH%2Bx%2FVjXlNSLF0%2BFeSY68s51jSzmJru4%2FSh9OIuUzXqmP1gA4pBWqzQhbcU2Tpu3%2BH%2FUgr2pPsi0eWANi1OwXJ15DRdcdWNah7R2vfA7fB497xuxivp8pQb%2FCm%2FhryHvzDCbmEhb582LoxqFn4eOutfg6NYip6NORhmJB10RLS3Vr39xNZmwAd4C3YcfdlBwmkQYGZafFeX6u4M560btA%3D%3D--rLRi4F%2B0zAtC%2B5Wx--wTmGHN42CSP9QhRtTmInpg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2015441794.1592439203; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=0MKjfGitHOm7Ic4zmKAGFHMCHv2FBK%2FreDHlIoDMZKssOhpgXKislN1Il2DpikZqCfWgT0hJoj6zabJazQYR8MS1hioax1NszqrZQtF2JJumiv%2BX1xv8svG3ezRWabMJSyhwZW5naUCzBwORmWWI%2F9crVknZIxSs3%2FF%2B6quStYOBEqTxIOp77inegSI0xy5z58AqbgIwZlPwGZTlrXn9DSnEGObHb3stGb5uU87znqtEICbnDcMxJcYMRslUcA2nN6a7K1tlA69bcZcxskS2yg%3D%3D--LuHE6FBs0F9p2xV4--HEAR94%2BaY%2Fbvt2Vw4R5vkA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.935544431.1594935295; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -694,7 +694,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC86:1D9B17B:5EEAB1A3"
+ "7960:5415:97B6BC:E28F2A:5F10C7FF"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -704,7 +704,7 @@
}
},
{
- "ID": "90b8bd5910a6212c",
+ "ID": "2c409b7c9d3221de",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/pkg/errors/tree/v0.8.1",
@@ -731,16 +731,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:24 GMT"
+ "Thu, 16 Jul 2020 21:34:55 GMT"
],
"Etag": [
- "W/\"f91b7b3b72f426eba3a2398494923f00\""
+ "W/\"b8cc5f45244c9f9735f1c043333eff61\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -749,9 +749,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=QAyRg6%2FT01SK4o%2FzhwqgsmOi3IijhXH69NP3%2BKXSlKjDXfebsn2fyOURHj4NRiVGgK9b6LDexfIlkGCVhTh9ju%2Fi0vH%2Fa5ICE6qK0M1%2Fxx1lmqSd6itRrs%2B51sOlNhXb6zPP%2BHG8Vd7G3NTMrRsPDd9ekuZ%2Fd5l22kve1VFSol0bPw96I1H04SAwPmTZpdMFF3bjRqgibHhjkVxXoPt22I0stMtPOe%2F%2BdOzlNTjG7U6oCcsPuVNoyJob532QFNEl4oPYhHn%2F3ZvLa3DNruDREQ%3D%3D--kINRs%2BZWls2s9IVd--iW47BfoLR20r%2FIh2ZbB6UQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.313464131.1592439203; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:23 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=2K2eEjYgypK73NNjC2ouZOPe05bebMQRu6GMKzqY0k0NkiCBMD92no1vqNYz%2BBLwP40y7wUzffQ2HKdTz1pHpILdybERKrNr3XChV4%2FwU7ix2xqpYU%2BYQsPRsQBS5TsH5cG0Dr7b8XPfra9RJA8BGpG4FB3aFwLeHlUPgWeo0IM8%2FoIpqkklLLgR%2BQCRu7J11gAceZ9lBsn%2BnyzNy4BBslJiivJgg0X%2FyMs2%2FY6za%2FygYAb%2FnNuY5YGf9byb52xwdk%2BsaIobqhY%2FIFQMIMdRBg%3D%3D--DFWiFBjZODjvwLRT--%2FpSruhNNY5v9tB%2BP%2BLR2lQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1332191268.1594935295; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -769,7 +769,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC8C:1D9B184:5EEAB1A3"
+ "7960:5415:97B6E5:E28F68:5F10C7FF"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -779,7 +779,7 @@
}
},
{
- "ID": "50085459d20e5ad7",
+ "ID": "010e8355ab21233e",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/pkg/errors/blob/v0.8.1/errors.go",
@@ -806,16 +806,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:24 GMT"
+ "Thu, 16 Jul 2020 21:34:56 GMT"
],
"Etag": [
- "W/\"8f922567eecb3ca07b8720cfc3f6a138\""
+ "W/\"28518dcde5301d7bd6fada2c3cd9dc9a\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -824,9 +824,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=%2BaQMtRuLiKhWpLxxQU5n%2FtSkP%2FGZTbU7aZXKLQB6M%2Fm73IcK8PTlmLlyZpqLafsDJNfgiRSTjmElgBbHKl6EKc9%2FEnIwMuTIki%2F2weEm%2Bj%2B2g%2F%2B5Dami1cQAKNy2DUHj67yyX%2F%2BAMlabriBqwq1rkmMewXKtwh7%2BXTxVi%2B%2B1FsRbAc5%2BWQjWshLiTBQ%2Bi40QaIv0qdWuOfAgURw3PjtsGxI9%2Bfnuw8zJMC%2FdVtW2GVsyd%2BnVIW%2FxbJotmRK6ZVUGRZ1jVDeUpSV%2B8Z8NScIKMA%3D%3D--2TuYwSeK5Xj99Ohm--yrIPpEQQ1VRqlAxppeZXxg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.672234400.1592439204; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=pKMeQPs8f6hqmru%2FYmpik1mS3SIPq4vsNP1W2EOrQ%2FYboJb1kFnLd4Ej0JZ2YsXAcvf8zN497CMODcUIfrlisZvUNXvVz23zQbmrl2c2aqqiCf1%2FgFN%2F6iBp1g20zVNlYCDLTJ1goZHUSMm7%2FTs%2BCiuinsq7Az7fR8Rs3%2FsEihUCLpZi2mizBOG4vzgBd8xuztZjtr2VqCLvDzh3sof6HlTS0wlw6IvLLerEWBEa1u51NK2UgsRLSYjX%2BrPSIvXO%2BE3k8VSt%2BTIYZhlydzzHvw%3D%3D--pBXw9qwRyGitQEVR--UYW39e3og8gdFTImbsuE9g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1590851131.1594935295; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:55 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -844,7 +844,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC92:1D9B18D:5EEAB1A4"
+ "7960:5415:97B711:E28FAA:5F10C7FF"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -854,7 +854,7 @@
}
},
{
- "ID": "fcce3045df30c60c",
+ "ID": "a612ed142f545788",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/pkg/errors/blob/v0.8.1/errors.go",
@@ -881,16 +881,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:24 GMT"
+ "Thu, 16 Jul 2020 21:34:56 GMT"
],
"Etag": [
- "W/\"8f922567eecb3ca07b8720cfc3f6a138\""
+ "W/\"28518dcde5301d7bd6fada2c3cd9dc9a\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -899,9 +899,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=X4aJ4M2cHyvNC2yZqOIdB3nQ1Ab4P1Ql37bQyI8SeVnlKMfo5xnS9pXxjtQxIcmYbRSaAwSk66jlVmes%2F8sWYbg9OX0qJF8lBS7lJx5y0LqApCOCpwblEZFxaIme7IkFBjPRnW20TM34uu%2FGAMWiAWXN528ZHX%2FDgUpVsLO5uFhtpIXalf34iTD7QGhqIu7wdKHom8hJ1R9mQDbnguxjvhhUJiPzm8C3nl59Pvk8xlVtrpOXkq%2BfuTtHqKfkh%2F4XY7Dt05E10Sjv98VDkv%2Bwdg%3D%3D--G4PRRZYbz2ArM5mO--PQ2X9w5IHGiswQ1HPJqi5w%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.565794311.1592439204; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=kU%2BvztJ3STEV3wF7pAfCQcH%2BFTSCzFb4Ny0NgxDxQjRCqyPXzoYtqav9nnQshIq%2BUL8ezuKu1qf9krMBD77vxXBw22Kn2XJEh%2BXcmk7WOohPi85BLGzSqVtHUPObyGq87D2rBhALLLc66kqYj1oE1ivRe01EC9U9bZ8MM86735xviFNaWh5q%2FIoAfnPLWlDWxQu69ddlUZq2Yb2xVMLekVM2QKCp1ceSOa2IAYN%2FCfJk%2FU%2FE%2FCKn2X0XzL5%2F4BHuzi6o47594vgT%2BnyFOwOaSw%3D%3D--cqoYWqIOnDk4zttD--pXUaLxE7jPvxw%2BKaL6NMZQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1545176899.1594935296; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:56 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:56 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -919,7 +919,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC96:1D9B192:5EEAB1A4"
+ "7960:5415:97B72E:E28FD8:5F10C800"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -929,11 +929,87 @@
}
},
{
- "ID": "320e2df63458a269",
+ "ID": "853075c4037a5239",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/pkg/errors/raw/v0.8.1/errors.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "127"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:34:56 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/pkg/errors/v0.8.1/errors.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97B738:E28FDE:5F10C800"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "3f1cad03241962cc",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/pkg/errors/v0.8.1/errors.go",
"Header": {
+ "Referer": [
+ "https://github.com/pkg/errors/raw/v0.8.1/errors.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -968,13 +1044,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:24 GMT"
+ "Thu, 16 Jul 2020 21:34:56 GMT"
],
"Etag": [
"\"1887f1a9fa18a47986df2f42fdc7035b2178c2942b6955f0a4bc7c4f58aa2e48\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:24 GMT"
+ "Thu, 16 Jul 2020 21:39:56 GMT"
],
"Source-Age": [
"0"
@@ -999,19 +1075,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "72ab01fd55c3a39c5de4a17368f5a1eddfe94798"
+ "049f019c20be65c404864f9487b66f452db067a9"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "1A64:1024:50E5CD:62983E:5EEAB1A4"
+ "47DC:36AD:1CF3E:21F49:5F10C800"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439205.642699,VS0,VE118"
+ "S1594935296.424398,VS0,VE167"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1021,7 +1097,7 @@
}
},
{
- "ID": "11b1ee6dc8a13f8d",
+ "ID": "a4120fe1f4ddd767",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/hashicorp/consul",
@@ -1048,16 +1124,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:25 GMT"
+ "Thu, 16 Jul 2020 21:34:56 GMT"
],
"Etag": [
- "W/\"694eba992f028cc262d6d10cba51cbfb\""
+ "W/\"16c427d7c82d42865eacd3caeeb9fd13\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -1066,9 +1142,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=RXZCqcGTpwpoFYqU9si7fBOB84TCwafXlOoH%2FWteiQTVZVC%2FPAmzX9ARELWKefcObXXpN8xaCZBsUnC%2BSW49kllgc%2FB%2Fym9TN5MV6zScOTKkWr5NFQm0CRHFT3LkTOlOBk9Q0LzdEmGUI%2FArRz3Glr12uyrOnQRw4pFU0mviwFbsgKnojamRF6BeryxAfSUHgsanZMNd596Bc%2ByRutD4zgVOJ9w9Hq%2BpndjmAMqi4cpXpFxAc0WnNZuBbcu0jw3MRBXTcwKqZBX9oDGufD6s3g%3D%3D--szLf1WYxIGwmCfRQ--RhRbEHJtuJMbkiWNRapFMg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2059449095.1592439204; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:24 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=oLhjS21ypBXviumHtCb2zwk5xXEYNAzZ8kkHHuWUPkl5oCJPh6Wz0q0KRzRVIu9WL5n1jeyWqkkWNhZoPhiXOIpFjsanhBi3YttVierUaBPd6vSQCjzvs6HbfCe2Hjk4Ow7bKbenoj4Bab73AmNSKXYwU0vcaK7Hhj7A4poHUBaT0wGD95UNiVDAySi4HhnVwpbdSktNRhAsYQNs5k%2BTVOx7wJflmFEUfrlHPNsOT8kJsV2fC35byAhEmJ%2FJRK6t3kPRUQxYFN3FkYTOv9kzHw%3D%3D--ca%2B4oJsFV%2BXUM4wN--VjYzllZKfXryX4%2BytZ1liQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.252687758.1594935296; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:56 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:56 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -1086,7 +1162,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EC98:1D9B195:5EEAB1A4"
+ "7960:5415:97B756:E28FEE:5F10C800"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1096,7 +1172,7 @@
}
},
{
- "ID": "5234ad9263bd6f6b",
+ "ID": "a349c5c1cc8f7b35",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/hashicorp/consul/tree/sdk/v0.2.0/sdk",
@@ -1123,16 +1199,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:25 GMT"
+ "Thu, 16 Jul 2020 21:34:57 GMT"
],
"Etag": [
- "W/\"0efbead41b2a9d57459d3aac45b93223\""
+ "W/\"25ae20221b29412a6937b301ea88df6f\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -1141,9 +1217,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=KtpYjRg3rZed1K4JGqKcFrw2FwKK6bhJJLdRoKZ%2FloCZXTZfYZrVJyfWRvLCwF%2BpDakx4nbR%2BjunRnmvLhhFkeDvMhvQniZNZhXPb9%2Fc301X%2FV7MG3L2FIvdBhYMuxLNv%2BLEMKZGKS6xZPYbInYMwjRdXGimg12HIqfQXyUfYLHNBhszx14Ub0LUn3U%2BFBCVh9w1HlaOrOkFsMeQIk1O5mqJsTzbWSl37sg2sgg4k0pz6%2BKbYN%2FNzMiy9VhpPADlCsmR%2BV%2BcbsRqdlmkkh020Q%3D%3D--%2B94sz%2FDXK23H%2BnxX--AHk1OAqT%2Bot%2FZIoRgVSzfg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1315494275.1592439205; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:25 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:25 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=T3rZoPzT2ISB%2Bc59yVCD6vcKbVqyQN%2BxLNDx4N%2B543lLqPq6nSDy03rpOoO0rXDL4ZKd6DeKwlho2FXmOUc0fzDZBGncm3hg8H%2FTHkpd0gp26AUHdCesUhnGQ92wh4heWUtp1Jifq97J%2Bu%2BODcqoTnYDWVZINEZh%2BI7daUi%2BQRKCfMEtr97DwFiwYRMkoj%2BCexRw6M8yjX2k9OwILwJjoC6nYsnQpIfHKy0I%2B0qTmtV237SDMYizZByCCaBEFOsKJ%2Bav4uB%2Fao45St%2BU48plcA%3D%3D--F1l%2BLxlhSDs5qCKo--2q5s%2FB6AKPzTcAhrYy6BKA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.563715544.1594935297; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -1161,7 +1237,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECAA:1D9B1C1:5EEAB1A5"
+ "7960:5415:97B77D:E2904F:5F10C800"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1171,7 +1247,7 @@
}
},
{
- "ID": "6786bd95418bec0c",
+ "ID": "f286a858954e96d9",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/hashicorp/consul/blob/sdk/v0.2.0/sdk/freeport/freeport.go",
@@ -1198,16 +1274,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:26 GMT"
+ "Thu, 16 Jul 2020 21:34:57 GMT"
],
"Etag": [
- "W/\"64a8e8ed7d2fd7745a5a5f5c83f3e022\""
+ "W/\"56021d06f96b726d7a600e43c4fb3246\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -1216,9 +1292,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=mdEhiksRCrIeMfCNRWZZgWQJui4OGyypF%2FSGfaFC2kQXt1DFxq5jD%2F5j5t%2BMCIpMaMT2IObo5sSsRBoaMzQQY1%2B38FEB%2B%2FvK76tBDNK%2BucUpQpl3HYkDuzZbnsoMjZJH3YfuQbamAKAdql2%2FBwrA8j%2BNDE0WdyfM6mTRjNjqieph4HCt8SzbFfXQx4LRr9inpwyR%2BzfZn4kYIjA8y7G35pqHIm1W36DiIHpOqTPFyDzFGEOcVkIzZ%2Buo7eII1hXjdWeVU1%2FPh4Z3OBGKGcvp8w%3D%3D--R2JO713sno%2BlyHvt--v5dxLhhi2AGH0Y4rKZWrtg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.476163997.1592439205; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:25 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:25 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=sXsg6zN0cBjJYGbwoeHLEgcZVMZH8N3bxlyvi%2BCzoeRaLyhm0PCLWTz9jyz1BT37kvZUvGoxw89JU15rH7dBTggBiDsjpIQOpF%2BwcUiYfeOsZK1oUPS2lkjXni5tKP%2FuvKewZ7nn3INxln0JmGvr%2FBp%2BRjCg2ijOthrWSMwSbaO1SQvwbEL2wNO8QdZG%2FQRU7IIjRKCqfPzQ09R39OF2%2B%2FSG1MzILW%2BWC9DTTsC0O8BOx6vYhi6IPT9XkdE16n5YuFMWoYhZxT9SoU7v6vo3FA%3D%3D--699JxriH3ouSBGS0--B968mOdx%2F67wtfeijExWjQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1268658350.1594935297; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -1236,7 +1312,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECB3:1D9B1CD:5EEAB1A5"
+ "7960:5415:97B7A0:E2908B:5F10C801"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1246,7 +1322,7 @@
}
},
{
- "ID": "9616db4985d7524e",
+ "ID": "dd3abe57c1e9b6ad",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/hashicorp/consul/blob/sdk/v0.2.0/sdk/freeport/freeport.go",
@@ -1273,16 +1349,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:26 GMT"
+ "Thu, 16 Jul 2020 21:34:57 GMT"
],
"Etag": [
- "W/\"64a8e8ed7d2fd7745a5a5f5c83f3e022\""
+ "W/\"56021d06f96b726d7a600e43c4fb3246\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -1291,9 +1367,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=F5xgirE5HMppPNiNrTfO1dKIIMRIThTYazvctqRQa%2FizjyK%2Bmxt5zTmFOT0KItkijUXb%2BcPV4WMAuFomZbbpR1X5mBvPQv3qc4%2ByyELZCbM0XcIGR9uzPDNxr%2FLrNFzaIs%2BF12MX7ZSKLGh99z4DJEouvRl7zCGsYwuOlznhVffSYqL8CCm%2FeGnpXVigLU3NFQHAZsud6jI7pHAf%2FPtXdaam8ILIQ%2BhWNStXlaBP3WFzPj2wqcEpjSnwVXquudkcASdCs%2BMCQejINE%2B7L5NNPA%3D%3D--1cH0knl2TeJJswxl--lPctGoiVe69i1f26VqyKhQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.824044712.1592439206; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:26 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:26 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=JeBt6Y3n2dEkgIJspkGYt6BhDg5pgQLdKheZ2b5NDRMTqKvAuCXyBkJJalMfjTVOMyWYMmYz3%2F2Y8aa0YurDr%2BQmoXiCHHAkQ%2BiOOCATqZHoZLekOCZpXXJs3P7ykAJggRy0F2dhdlgtPJfEsBFC9TgXv7rw7MCT9W6Zv6kOwQv3APVAqZgNexvhzj%2BvWDHREf9QvIN3Y7m%2F4EZ6rmqAiiXRjFsKQ3If6kaOTM%2BIFhKXoIs4V%2F071Hz08r6b2oLSxqG%2B9xsDuew4PAUt%2BQpxxQ%3D%3D--s623OkltpQkKr03D--BKV%2B%2BcU83%2B5yjilm%2BOywEQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1637017363.1594935297; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:57 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -1311,7 +1387,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECCF:1D9B200:5EEAB1A6"
+ "7960:5415:97B7CF:E290D2:5F10C801"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1321,11 +1397,87 @@
}
},
{
- "ID": "353d44e9bda57239",
+ "ID": "280c5ecdbdf8f34b",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/hashicorp/consul/raw/sdk/v0.2.0/sdk/freeport/freeport.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "152"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:34:57 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/hashicorp/consul/sdk/v0.2.0/sdk/freeport/freeport.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97B7D3:E290D8:5F10C801"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "82333aedda903542",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/hashicorp/consul/sdk/v0.2.0/sdk/freeport/freeport.go",
"Header": {
+ "Referer": [
+ "https://github.com/hashicorp/consul/raw/sdk/v0.2.0/sdk/freeport/freeport.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -1360,13 +1512,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:57 GMT"
],
"Etag": [
"\"062a5ca99ca43e8346e6f2e86a69b7c5c0a48f839b5589a8c4f398f1859a50e4\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:27 GMT"
+ "Thu, 16 Jul 2020 21:39:57 GMT"
],
"Source-Age": [
"0"
@@ -1391,19 +1543,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "d1b32bd6c1d2be70c5b9e6633945b209e01ea274"
+ "e978fbdb8f0944f644255fc92aa69400c33bfdf6"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "9710:19DE:53CD88:65CE96:5EEAB1A6"
+ "FD24:382D:0E9B:15CB:5F10C801"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439207.899515,VS0,VE151"
+ "S1594935298.816474,VS0,VE114"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1413,7 +1565,7 @@
}
},
{
- "ID": "e0286304b9e252f3",
+ "ID": "001c5c3c00baecaf",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/plazzaro/kami",
@@ -1443,26 +1595,25 @@
"en"
],
"Content-Length": [
- "30164"
+ "31834"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-XRIZIw1denHKO66l'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-9K4pKEs18rCWWWnY'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Dc-Location": [
- "ash1"
+ "ash2"
],
"Server": [
"nginx"
],
"Set-Cookie": [
- "csrftoken=Y1tIVhFerT32O8poPKhN1CH8S2deeY3NnU6TouWAiLJ6RG4qtHX2hKeAOObjcfgZ; expires=Thu, 17-Jun-2021 00:13:27 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=S0GJMLX2XX0GXuumZHUGOG8GmjkT2LQEkRg226lB7HrNb6r5zv0L0Lcjfn17bdTv; expires=Thu, 15-Jul-2021 21:34:58 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -1471,7 +1622,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "46bccb50c2a5526e"
+ "98b35f70ee5f4010"
],
"X-Cache-Info": [
"caching"
@@ -1480,32 +1631,32 @@
"nosniff"
],
"X-Dc-Location": [
- "ash1"
+ "ash2"
],
"X-Frame-Options": [
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.199439048767"
+ "0.229601144791"
],
"X-Request-Count": [
- "3938"
+ "1102"
],
"X-Served-By": [
- "app-1133"
+ "app-3012"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "30b4392d986f6a0c",
+ "ID": "d480c4baf47f33c1",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/plazzaro/kami/src/v1.2.1",
@@ -1535,26 +1686,25 @@
"en"
],
"Content-Length": [
- "30171"
+ "31842"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-8zb7C6RkL79vcEbQ'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-iBcLF0SdDxp2r7pu'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Dc-Location": [
- "ash1"
+ "ash2"
],
"Server": [
"nginx"
],
"Set-Cookie": [
- "csrftoken=ROnZxFY2Zx6nYvzcjrYTC0kv6nmbGLX3hfEIf2DA7PFaOrYDvTuLloXyoLPDOkIQ; expires=Thu, 17-Jun-2021 00:13:27 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=aFES5fm8KInziMfe6Tgb2hZQZyTVJqJKE97ctjGRLcXthKqGVOk607w7zCy8ftiR; expires=Thu, 15-Jul-2021 21:34:58 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -1563,7 +1713,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "3f832cb6e78ffc36"
+ "0ce975764cca7dea"
],
"X-Cache-Info": [
"caching"
@@ -1572,32 +1722,32 @@
"nosniff"
],
"X-Dc-Location": [
- "ash1"
+ "ash2"
],
"X-Frame-Options": [
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.0927839279175"
+ "0.108412981033"
],
"X-Request-Count": [
- "405"
+ "1666"
],
"X-Served-By": [
- "app-1104"
+ "app-3015"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "c011a7e9d5eff5b8",
+ "ID": "0f264eb41bd7cf8e",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/plazzaro/kami/src/v1.2.1/defaults.go",
@@ -1627,29 +1777,28 @@
"en"
],
"Content-Length": [
- "30191"
+ "31861"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-JzHAgj8qB7UYi79j'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-2724d3P7OtlMxV0X'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Dc-Location": [
- "ash1"
+ "ash2"
],
"Expires": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Server": [
"nginx"
],
"Set-Cookie": [
- "csrftoken=R5fe0Ez3uKho2Rh9XN6NuyndLmOjBm8K1dS18imdk6B1yq8a8RgjsGYDIogkCRVC; expires=Thu, 17-Jun-2021 00:13:27 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=4GLWQMuNcUlRtBdNVycXKGsqTrNxksEaNYAEMsNpwjpAMhZEFlTz32XealiRoYCP; expires=Thu, 15-Jul-2021 21:34:58 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -1658,7 +1807,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "a4c7698c4f985827"
+ "d296095ac141beaa"
],
"X-Cache-Info": [
"caching"
@@ -1667,32 +1816,32 @@
"nosniff"
],
"X-Dc-Location": [
- "ash1"
+ "ash2"
],
"X-Frame-Options": [
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.0888390541077"
+ "0.092080116272"
],
"X-Request-Count": [
- "1485"
+ "1076"
],
"X-Served-By": [
- "app-1128"
+ "app-3015"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "9a59cdc3bb8d7f2f",
+ "ID": "ad52a78eaefc93ab",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/plazzaro/kami/src/v1.2.1/defaults.go",
@@ -1722,26 +1871,29 @@
"en"
],
"Content-Length": [
- "30191"
+ "31862"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-JzHAgj8qB7UYi79j'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-iiwLoRoQQgF3eaJn'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Dc-Location": [
"ash1"
],
"Expires": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Server": [
"nginx"
],
+ "Set-Cookie": [
+ "csrftoken=aWfVbY4ZfU23cOfKrQxQ2JSl3vofJ9NqtQSKr1aLHC4kDGSMdXytI9pBcY0Kt1Fa; expires=Thu, 15-Jul-2021 21:34:58 GMT; Max-Age=31449600; Path=/; secure"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
],
@@ -1749,10 +1901,10 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "a4c7698c4f985827"
+ "b171546324f07717"
],
"X-Cache-Info": [
- "cached"
+ "caching"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1764,26 +1916,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.0888390541077"
+ "0.130285978317"
],
"X-Request-Count": [
- "1485"
+ "3905"
],
"X-Served-By": [
"app-1128"
],
"X-Static-Version": [
- "519a8174b807"
+ "d6340727c953"
],
"X-Version": [
- "519a8174b807"
+ "d6340727c953"
]
},
"Body": ""
}
},
{
- "ID": "96bc9d97653fe2d3",
+ "ID": "9515cc42a2c6ae4f",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/plazzaro/kami/raw/v1.2.1/defaults.go",
@@ -1819,7 +1971,7 @@
"text/plain"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Dc-Location": [
"ash1"
@@ -1828,7 +1980,7 @@
"\"273c5a44c7022ad773b7d52de6174a8a\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:58 GMT"
],
"Last-Modified": [
"Sat, 01 Dec 2018 17:27:45 GMT"
@@ -1836,9 +1988,6 @@
"Server": [
"nginx"
],
- "Set-Cookie": [
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
],
@@ -1846,7 +1995,7 @@
"Accept-Language, Cookie"
],
"X-B3-Traceid": [
- "f2e249ba269f8611"
+ "68257d6d19201874"
],
"X-Cache-Info": [
"caching"
@@ -1861,26 +2010,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.0344159603119"
+ "0.0364229679108"
],
"X-Request-Count": [
- "449"
+ "892"
],
"X-Served-By": [
- "app-1139"
+ "app-1132"
],
"X-Static-Version": [
- "519a8174b807"
+ "d6340727c953"
],
"X-Version": [
- "519a8174b807"
+ "d6340727c953"
]
},
"Body": ""
}
},
{
- "ID": "a29a2a3367e31004",
+ "ID": "3ee11bff2a8d64b0",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/airbrake/gobrake",
@@ -1907,16 +2056,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:27 GMT"
+ "Thu, 16 Jul 2020 21:34:59 GMT"
],
"Etag": [
- "W/\"0f2f6866acec13550936871cc61c5bee\""
+ "W/\"6123f63727e397039d2cd92cef584d80\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -1925,9 +2074,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=izrcww3sxh%2FIcI23IQsnT9ItSWumXr%2FdU4DxVZWEM3RAT9Mz1uU2ytWq0akXTfbEIl57AgmYEwbZ0bhmc4vKkFgfVLWqqy89Gf%2FV1K%2B3PHzfimOGz%2B8%2FqRlooh4x0EP6lTIjxPBFBUNGtBY05FBJeX7O03HOH0eBmrUBbTuwwR2r8Smr%2FwcsH9HhmoPVVhW81sdgU5K8zFfUPDnMn7N6t5BzCPe9J0Xi%2FaI8Q%2BdNx50KZjk9OVfg%2Fmjs8nQD0H%2Fs2BXQ4ml9in9Q3QFgXSM%2FWg%3D%3D--6Ish2QgvZjs6LwSw--NLrniyIMAzbWpYkVAuk8TQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.118133179.1592439207; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:27 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:27 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=Xkc7p36SByEYeHwpXyi5HQVOyog7tyaWcYw5a09ikQOQVWJ2zKh5IxbvfEqulKSlIar1l1fe%2FpAOdIKsKvQGPgtvhnd1rJOryvHdf9Bt%2FPUYtcDcw919cjVqMx9LRNbuwzmTZysYacR849MvPNIq1G%2BNkN7mNzjTyyMgpLjgsrL2qGb3WxspCraz%2BXhD%2FnYrgYIew6AF43ly1vMTjS8ULYZDGjQAqvx3YcFfAAk%2FpvKn2r%2F8WBcZJMtzLkmePj7jdK5Qw%2Fmb1AXIm8S0wQPl6A%3D%3D--lhpv3X1zMYA35NjR--qmQnPShX1EFn5BVFlTdaKg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1072298213.1594935298; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:58 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:58 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -1945,7 +2094,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECEA:1D9B202:5EEAB1A6"
+ "7960:5415:97B84F:E290EF:5F10C801"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -1955,7 +2104,7 @@
}
},
{
- "ID": "304ca851cc1d6db5",
+ "ID": "6b6fb76257d26275",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/airbrake/gobrake/tree/v3.5.1",
@@ -1982,16 +2131,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:28 GMT"
+ "Thu, 16 Jul 2020 21:34:59 GMT"
],
"Etag": [
- "W/\"7cc342f37177e1011ec9204349452c53\""
+ "W/\"1f1d94e36f131ff0f14ec61055cf83cc\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2000,9 +2149,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=OI%2F5kUtyPdkSg2LGp3NkcFpD4n2QeiSogGx1el3agcZkLFKiMmDjrjIxldhoe1awEAhGCsROyy76VV2XzFcx3i09SCjK0hBrCNZsh5J4xxUPiQulqDLVmrtrt9xbt2kFq%2BwGTQvq7JOAmhpklwQi8yB5%2F9jX1r4lBIYcI5y8CLA0SQUC%2Bta4QV%2BEO5PzFyIqiuHfRasfE2L0sJq4NygLnYvjdQrY1UmAm8cAqIjFBe%2FfTLiPpiSBhv%2FEUlfqhDgLTR2NL2qioc99BJhi0qbqwg%3D%3D--FNfh52ERK9wU%2BoWc--72SliZ6tdhp%2Bl%2FM4%2BSWDOg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.63238364.1592439208; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=5pv05mioR40VChBTjTFqr%2BVwa%2B8KfSnh0prRoBI%2FYxrNY%2BLBfRvaNC2fRjx6b4DxqN4HZ6jVpA4fQoqWLVMEfXyh5GgT3TYJ4VJ7Ls%2BmhGfWNRlUWwiwWyWILvn0U37R1F3p80H2zBIHQ3ENl%2B2jmLMmj1WZrHLCWWztTL8Ejc%2B%2FkarQoVnT7LhTt%2F088k%2BuCVmWHH0%2FZgPvdK2miOnsV738zS4JOUBKDWu2K1eAsSV46W1dRviwPZZU%2BbpvWNAxNxwu1w9Av52JtJO%2Fv3QAJA%3D%3D--op%2FM3jS1bWgDXlax--mirFpdXK5R7hj4OQe4zgrA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1479980473.1594935299; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2020,7 +2169,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECF6:1D9B23B:5EEAB1A8"
+ "7960:5415:97B86E:E291D7:5F10C803"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2030,7 +2179,7 @@
}
},
{
- "ID": "9f0292115723647a",
+ "ID": "ce06afdc7f17c3cb",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/airbrake/gobrake/blob/v3.5.1/gobrake.go",
@@ -2057,16 +2206,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:28 GMT"
+ "Thu, 16 Jul 2020 21:34:59 GMT"
],
"Etag": [
- "W/\"72263a598441b9e333d631c79362af84\""
+ "W/\"872303b32938d79340cac66b5a56152e\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2075,9 +2224,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=IXxeeqO5QuPqSHxtnT2bVFTbIhWSrmkH3E%2BJPZpNnAlZ7h0GdPBlHmQdEDtjyVtiuVcU3ILtDAZfvBdAB4O1z4c8t0RdBbI%2FaMn6txtrjEU376JTT2hwk6Y%2BNuNhD90k111GorplfrDDeDUjqkF7q7sZaPuIM2k7yPHQL8wQswcV5bz4hDqoSPEa%2BvKSyzU15XRTqgjSbACDDBwnsNbVJeBImSQWNIjtf5n76ZEw%2BVIgOyN3lJx54PWMRayoqiqINpVVBuYG1IdtXNQz1ucMdQ%3D%3D--SFdgd%2BKPqObPuGcC--ILVzUxYJznlLwnVV0c%2F8Lw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1924740067.1592439208; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=hrdHy8PvoLQkgeHR4pGXYhAUasyCt9om6JR%2BFv%2FvLAkoBAKAkB6MlkinnMe7G73VTyDnd2n0WqsgRQTaJwUswSsSJ2KkL7QKYcptwpUtwva49BX2KBqK9f4Jprfl8tOYFmTMHOWtjb1fWltdUggzpT9KXxMDS6XTYf7%2BTnouEcOA%2FVKs%2BT18uuccyC%2Br4Q5vssvsgufcTd2PjUHRjd6RNQEmCpk%2BlYru1rV5XC3rrQanekE%2FljeIVNumtPIBQSlazRT9bFdXlIbs%2F%2FKtI4WrxA%3D%3D--4hTqi%2BgFRIhBEeCm--umTuPAaL1Hg2CiCzESWK7Q%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.944484003.1594935299; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2095,7 +2244,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ECFF:1D9B249:5EEAB1A8"
+ "7960:5415:97B892:E29214:5F10C803"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2105,7 +2254,7 @@
}
},
{
- "ID": "c692f229da5271fa",
+ "ID": "30fd4ab53360f537",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/airbrake/gobrake/blob/v3.5.1/gobrake.go",
@@ -2132,16 +2281,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:28 GMT"
+ "Thu, 16 Jul 2020 21:34:59 GMT"
],
"Etag": [
- "W/\"72263a598441b9e333d631c79362af84\""
+ "W/\"872303b32938d79340cac66b5a56152e\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2150,9 +2299,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=%2Fg1lVzxPlY%2BmvO9fZmTXgv2yWfb2iaQ2NDPdXb8eNSb7IJE0i%2FwgR39nSppZTlcayLyazWQfzvBQapI9XzExjYuYv%2FqDVLLeTVbCZ7Qd86HfZkodHnUzKCiIU2jmQmKTIA6F%2F5PjKd4MhdhNLPnjP8kjAWVoj%2Fo8GOIbM0deTLvcB9cpmc7f%2FrHQiBIF%2B7dS3xyYt6P%2FPkNbbt%2FCq6N9uNWZnqcTRwFevNfkp%2Bn%2F%2FIiQn%2FGLNIV4BmkGxJK18s5TAgueCOcck3q%2BvLJRVcso0g%3D%3D--Zptd6MGcXz2y39Ho--P4ywwJsskMyZt7tVEK44xA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1051797866.1592439208; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=Ptgzkw6RXmzG0ayhCIdjeQeiiNz8tTChsNU2H7XJnEd%2BYqnl7hlBmpozL%2BthV3LRjr%2FYF9LXelkA8TD31BurI2HSNG3ecKKDisAzk87pRUepMeQjTXnmyag4V1OwjDJ8ub%2BNu52Qzv3qzfzCHDKJsTGTks1lqCgLEFtjjveqb1HQmzrdNrWM9WYUPekL7wP%2F%2B0rgtkua0Hcpw6l02uaFcj%2FWk8xCrFhlcGuQFPR5GWkykbRNs9w91TKmSdQGh1lb7pfo72AGfBEnWvgLGKFPKw%3D%3D--WuJkQrL015YCnIGg--I8JZvcplUz0Ykm6e9VkCFA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.2109630160.1594935299; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:34:59 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2170,7 +2319,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED06:1D9B253:5EEAB1A8"
+ "7960:5415:97B8B1:E2923E:5F10C803"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2180,11 +2329,87 @@
}
},
{
- "ID": "b24bcc318da7ff21",
+ "ID": "9c24f4d62beab7b9",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/airbrake/gobrake/raw/v3.5.1/gobrake.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:34:59 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/airbrake/gobrake/v3.5.1/gobrake.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97B8B4:E29241:5F10C803"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "b6413997192ccbb0",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/airbrake/gobrake/v3.5.1/gobrake.go",
"Header": {
+ "Referer": [
+ "https://github.com/airbrake/gobrake/raw/v3.5.1/gobrake.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -2219,13 +2444,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:28 GMT"
+ "Thu, 16 Jul 2020 21:34:59 GMT"
],
"Etag": [
"\"a664e287f0dcdb0d386cfcb3618e317d40641257ecb7e2d7fd3bb1d3c229c03e\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:28 GMT"
+ "Thu, 16 Jul 2020 21:39:59 GMT"
],
"Source-Age": [
"0"
@@ -2250,19 +2475,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "48173aa7b046c84036e257e940015aa668b4c634"
+ "183f3c5e31d008cff8682e4bd75687c146f05e7b"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "A47E:04A8:51890A:62D791:5EEAB1A6"
+ "A77A:71D1:1ECC0:23F19:5F10C803"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439209.690563,VS0,VE121"
+ "S1594935300.892477,VS0,VE99"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2272,7 +2497,7 @@
}
},
{
- "ID": "34462d07adcba293",
+ "ID": "54f54413797d7c68",
"Request": {
"Method": "GET",
"URL": "https://golang.org/x/tools?go-get=1",
@@ -2302,7 +2527,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:28 GMT"
+ "Thu, 16 Jul 2020 21:35:00 GMT"
],
"Vary": [
"Accept-Encoding"
@@ -2315,7 +2540,7 @@
}
},
{
- "ID": "2e9b95ace645e346",
+ "ID": "5e58443bb72e2066",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools",
@@ -2342,16 +2567,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:29 GMT"
+ "Thu, 16 Jul 2020 21:35:00 GMT"
],
"Etag": [
- "W/\"1c2543f380bd45f0f645c3eefd68f8b3\""
+ "W/\"703209b431b04c6b0b83a0e3056108d8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2360,9 +2585,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=N4UjlLcX5QspVJFWN8oSdFOmalolEvhsoFs2HDnba4e0vAxrQuwqCG69LIrMYDD5v%2BAdDvItoY2aX9gyHpHxLzoQWUbkXv7Q2fGf0qyxN9UfeQqVtjg5PaEVkmY7aBQqxwd2YqKKDOIqU5vZyKdLgXAmjjNeznttfmCMJNYK5jHy0HgKTaTOih2US89dfpFXix2pUmHNC6Escqm%2Bp9kdAgN7RFW3do8NekA8aNtPPls4UG9Fw5jocA%2F35LZs8oGLKuwKnqQmWJuANdruZvx%2Bfg%3D%3D--s%2B1Wk9BHcQ5nPJCQ--zGk%2B40QXPQG4%2F1gKL26F%2BA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.642747299.1592439208; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:28 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=P8zOzCEJHGeyJWLh7UEw7f8Ulj6ePy94V1JgvtIBuQGyHCr8SoaqV%2BBA2GPYkzqbK8eoQkLeNYTikOUR22q4v3fnO5HswdadZTzYC1N%2BWYIhCq4zYEaQlldOfR17F4Lrr8bX%2Bv0VBn2MbJ%2FaCH5kdKtK6Q5yQLG8l6%2FkVEDGou0DHDWE3szLaMpKjIgirz7xAOSWvZXsb%2Fp43OgG0wnqMtnKWxCt3zsWArmMjgjYivZdn35qREw0yOMaUdWAF7ElkQcGDeCwJhgb1tgBsEUeQg%3D%3D--PtVNd3SLQxqS%2BC4d--pkAQsV8DSAORHT%2BpIbobfA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.722871974.1594935300; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2380,7 +2605,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED0E:1D9B256:5EEAB1A8"
+ "7960:5415:97B8C9:E29253:5F10C803"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2390,7 +2615,7 @@
}
},
{
- "ID": "4fdb32124269dfaa",
+ "ID": "937bee0054207923",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/tree/030b2cf1153e",
@@ -2417,16 +2642,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:30 GMT"
+ "Thu, 16 Jul 2020 21:35:00 GMT"
],
"Etag": [
- "W/\"a6c853a9a0b57a1c90453aafd4f4835e\""
+ "W/\"f4f04e0c6d28c7a5d36ddb317ac1653f\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2435,9 +2660,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=zsw9zd6lWaTplH7fRwjeiVURuYql9Qa74VLAk9QJm0Tj0%2F6XzcJiest%2F5R%2FFJDuKM6cXvUaNQ%2Bt7WuSwppuJ2VwL1LZD7jc6E%2B67E155RvMkn0ViDw2yzzlat4mSOp9c5Xdrsc16O%2FTyn4LjAThKFHFADI9VCNVK6Sr0e0WjcugfhpqfuJMBsjtL%2BohD0qXAlMHEkc2uIf6%2FcZdrc%2BJYaVugXHPUhTY8P%2BSpadYR7x7ih9oVp0HDzcAfZsPZfRknFjF10hJaZVcUorwf3qGwxw%3D%3D--ZZ6Jcjar4ufbVtzz--VNW1yB48NHxjUGkwnaCiTQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2071574804.1592439209; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:29 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:29 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=0kanU5Ays55%2BgJrhH3SNxko47z7S3HBdIyKeGh0aTSUMu0ThdmI3ucJ2UM9JRexgjjkdvN8nq6BdkDjdioRMfhNcCLb54FPiRBHRU5GDsOjrkZca8%2BLxsjkHkF%2BlGJvXnWJYHAUZ9PTOn033J3%2B7vg9jBXa0PCdT%2B3Y1BVNdw4dq6lG%2BQIfIzR2pvp6nUpbC3QC2GxT08WnD6XAVdtC1Pnb%2B%2BRDj0JYSz%2BNMg2hbWFCpDa4CGYMyHn2J%2F%2FbkfIQrYjUguzWKtakYYCgKPbrd3g%3D%3D--E74Z4PT9q9hN48SR--lHaI6k2BknOXxN1ty4xx5w%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1341356250.1594935300; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2455,7 +2680,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED2F:1D9B293:5EEAB1A9"
+ "7960:5415:97B8EA:E29292:5F10C804"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2465,7 +2690,7 @@
}
},
{
- "ID": "010e0cd0287b0f5d",
+ "ID": "d1e256ad061310e3",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/blob/030b2cf1153e/README.md",
@@ -2492,16 +2717,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:30 GMT"
+ "Thu, 16 Jul 2020 21:35:01 GMT"
],
"Etag": [
- "W/\"c497c5e666c353fb68e6f80593acbadd\""
+ "W/\"4aa003fa239b4d741bb506aa6d8d2a46\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2510,9 +2735,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=NLafqI6tX5xlTHqIAIF6q683vCCay0ZZuM%2B%2FqXFfTTd1BNHP97MbJf%2FnWcCfL8miAGUiFRqkkDCOIDvl6qdzwYGx1LzdMeAlcS7UymbvoYMLXVCNyJeMey4IItjb6Wy9wXWzZ7oNjQDRnrm7vfse2HJin7gkxOnZLu6ML%2FH%2BdXX4b61ZxLiaCryML6NcRSSOzzwg6AW2v1x3LjD61nOhDIpact5uJHGVgBOaiQFClojHSQ8%2FKGNBnZGD5O6UBk6xxwK5oIJs%2F%2F2FkylP08okew%3D%3D--i8ygqSh451dU4X8s--Ky9NLNP5osOQYiEiefT2FA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1802577786.1592439210; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=i94q4CBabJ49BoheLrftIWj4xMXdLTuIYe%2BGr2ZC9cYHWbZGW7fsLLym3tX6gTrfouIMpTEkVaW3ATGV2vnpQV1v7kkyq8nIdt2SnbI4YGuE0zwZV6MCx%2BE49on%2B2AaBRrHTxOduJJ1sq8ndiQWkR4DBFMR9SeAV43RlJmR3T9385fWU0gpCPjoxz2tCdVzK%2F1H4XCO%2FnyExQ2xkxELDcwcBivXAsiB%2FqemwiJFLqk4lDbxQMqH%2BhhtmSce9rU7w0j3PKBSJyOPNaZiw2kg9iA%3D%3D--0uN5YER8mIhE%2B6VZ--RqHYF9eYTB0hVzrXl2HtOQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1603688985.1594935300; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:00 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2530,7 +2755,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED38:1D9B29E:5EEAB1AA"
+ "7960:5415:97B93A:E29308:5F10C804"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2540,7 +2765,7 @@
}
},
{
- "ID": "c1affc1e7cc43e08",
+ "ID": "70f4a0a1ab699e3e",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/blob/030b2cf1153e/README.md",
@@ -2567,16 +2792,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:30 GMT"
+ "Thu, 16 Jul 2020 21:35:01 GMT"
],
"Etag": [
- "W/\"c497c5e666c353fb68e6f80593acbadd\""
+ "W/\"4aa003fa239b4d741bb506aa6d8d2a46\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2585,9 +2810,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=0vIFqlm6LZXLGnUUjACgCFC%2FSkiu1VT4dv8RIu1ThR2%2BldxWlI31bvmJYZlzqz41Tn9T4TuIxXrd46XgJQtadKIIfiezT3b6jXpqBacJTcau2uLqjLUeywgMOLTEr%2BPFoPergSzC60DkeocX51FsRaMKh6bTvVpCW4uG3ZrxU2j3730Iu14Ssl%2FZzL8z%2FxPPbTRPbWTp9Buj9N9cgu262lAwGUHueYMltcNFHuXi4AFYT9i0KUBkRLTWVAFI%2B0O4lILIwNaaOabyppP9fVdt7Q%3D%3D--aVf811vuwB1xveCL--PuOClKcw44J6sjHoahCQSA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2026964671.1592439210; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=Fy%2BYUona%2F6dArLb5y5dBPyNWiQtl5EPMCc9A43Fkd66qx6uaCQ0A4DTdg%2B9d9jFFeFWI0HMJhkRmo5gsG0ll27mPtZ2VUDAEuVJqARJlIsl8l6hSpxQ9fl5mNyJXfDyuwWRUC5BdcKCnWWeyPFTo8fCf2G19LthUTrLjK9N4px0YkyqbGbqNZTENxPfScy4YZ%2Bex9yEBrySHd3lnSnXSjzGkFUMUm0MpAXZlw3c6GrXWkzxrb5rrIW07yis9%2FOlRdRgrE0xYFYxoPkGLoRs%2FKA%3D%3D--Zeyd4cwT0yy7sVlF--NvPHDXDZ5ryDWBKWyEt0ug%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.748912101.1594935301; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2605,7 +2830,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED40:1D9B2A9:5EEAB1AA"
+ "7960:5415:97B974:E29359:5F10C805"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "f8600a5f569eb19b",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/golang/tools/raw/030b2cf1153e/README.md",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "163"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:01 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/golang/tools/030b2cf1153e8cae0dc666053fad6691cde7fbd9/README.md"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97B976:E2935C:5F10C805"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2615,11 +2913,14 @@
}
},
{
- "ID": "d23b7777d7c39536",
+ "ID": "c2d8922f77b706d8",
"Request": {
"Method": "HEAD",
- "URL": "https://raw.githubusercontent.com/golang/tools/030b2cf1153e/README.md",
+ "URL": "https://raw.githubusercontent.com/golang/tools/030b2cf1153e8cae0dc666053fad6691cde7fbd9/README.md",
"Header": {
+ "Referer": [
+ "https://github.com/golang/tools/raw/030b2cf1153e/README.md"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -2654,13 +2955,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:30 GMT"
+ "Thu, 16 Jul 2020 21:35:01 GMT"
],
"Etag": [
"\"51919edcc8a0a667000886d616020fb9c6553443d317113023128c7376bc082a\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:30 GMT"
+ "Thu, 16 Jul 2020 21:40:01 GMT"
],
"Source-Age": [
"0"
@@ -2685,19 +2986,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "6381523aef3f1ca6749ec6d6ab4b7c11c3606ff1"
+ "6d3d44a72242645c56ab0b1169fb50baa2ee73ee"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "236E:671F:525135:63CFFA:5EEAB1A9"
+ "BC66:7E43:10190:12C8F:5F10C805"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439211.768383,VS0,VE160"
+ "S1594935302.501659,VS0,VE110"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2707,7 +3008,7 @@
}
},
{
- "ID": "34609c2e0b537eae",
+ "ID": "3328ca7b35630704",
"Request": {
"Method": "GET",
"URL": "https://golang.org/x/tools/gopls?go-get=1",
@@ -2737,7 +3038,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:30 GMT"
+ "Thu, 16 Jul 2020 21:35:01 GMT"
],
"Vary": [
"Accept-Encoding"
@@ -2750,7 +3051,7 @@
}
},
{
- "ID": "6699e7d5a427d47a",
+ "ID": "0e3c6a247dd05609",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools",
@@ -2777,16 +3078,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:29 GMT"
+ "Thu, 16 Jul 2020 21:35:00 GMT"
],
"Etag": [
- "W/\"1c2543f380bd45f0f645c3eefd68f8b3\""
+ "W/\"703209b431b04c6b0b83a0e3056108d8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2795,9 +3096,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=fmTyvdfctMGeHbzqVPx%2BVGUs4USfTKwc6wwgGYyBK%2F3wM2cIlVx%2B6hLaa0kuaDOfXnthEdGvNOAeL72cumPTvryufEice%2BqYmigCyem6wHExuWwLXKD1osE75f%2BAJOBV2hZLflLiW7iXCUyw7eHNqijub3FVGsX9Ek1V0t26WEYJiGa09PTgz4EjVnHvjRVZQzN5vZIzWZHqj85sVraZo8k%2BxRLxFwOcKQwunsPOyn9GuJUA9y3kqW17W1aQHIWFDh9eMut0t%2Bozhp1ckDFibg%3D%3D--%2Bq5hMp5MR7wwfKdx--RAfJt5pQLBNd802VFDcXJQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1042811259.1592439210; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:30 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=5kVR0RtqlxV5TnbMtZel3%2Be1S%2B4KnQLPeTwGpF9lf0lnMp4Eol0VTpfbnrbiUuEPMlDmf53MchQZ6F7bz%2Fj1l%2BtC1jVp4uFTK0ffUI4vk34jh7FT5rTaUGE4%2FpvaoJ2Mgx3D%2BNADzANuQSDv940tYfmxjNkM2eBVIspQlh8JIGqxCMsa3Q80kkoycLGG%2FrSErLz0TPDS67PwXcnYj0SEKgFhxg0xVccqBRRC5%2B74WkxIxz6L6jK8oJXagkZHrgGJ2Xichtpfcng%2BSi9cG7q0qg%3D%3D--dyStvir73mmPOS5M--HivvqFdJWX%2B582j3DXCs3w%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1725923332.1594935301; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2815,7 +3116,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED4C:1D9B2AA:5EEAB1AA"
+ "7960:5415:97B99B:E29379:5F10C805"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2825,7 +3126,7 @@
}
},
{
- "ID": "6ba7411ef358574a",
+ "ID": "3ccacb0c74354513",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/tree/gopls/v0.4.0/gopls",
@@ -2852,16 +3153,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:31 GMT"
+ "Thu, 16 Jul 2020 21:35:01 GMT"
],
"Etag": [
- "W/\"c1447f87c3971c5d3b27a13845b70ea8\""
+ "W/\"b8753620fc63b2b315f44cb0926b197a\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2870,9 +3171,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=efX%2BMkRd%2FNALDjUuI93sEf1QifZjvmcW5qd6ws6jVTXAfIB0xke%2B3yYnb%2FSZ6W3WIndAoT42%2FJquJrY9uKt8AP3Ic8pMs0Vah3xpcp9tx8ZVcKrZvSiTISNxQF0%2FDMvumfO5HeFDI6zNx6yYQOLtYRBZEJioNXjTECK3f4hA%2F69uqhwr6c6v93qDfzpSurK9mskEBdnKmiSrcIy3WxCCvRbs85WL37%2FqN%2BaeOHpM5%2BcqY3rLNrZREzbrw2PNUNvOn9442sha7LzdGAVYEg0yhQ%3D%3D--HHcsNYpbclr%2F%2B4TS--6ZorYV3qRnOwGGuRiy3ixQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.834028398.1592439211; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:31 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:31 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=4c%2F8Gwm4nmjeV7EY9VLbSvkwOnadX%2FddXnlHn81oNUfEgKvkymytNf1K7JkjA%2BapmjjzJ7rYrfVaYLMYSNLCOqwuJdf93aADvtUv5bGliiN7%2FWMaDrDwxLGO4zGPXF2U392bYYJ52laSk%2FIk6wp3abMX7RIcMvRYo0KxN6cd3g25pkGE3%2BYqT0z7oLRUhHjaLK4WjVFJmgaysBXjogLS%2BtllOz7QG4ZSo7gNlEuAIEGSVTX3TgpjWPW14jwaIoo3HPRrt3kfux%2BvMlxx4IgWdg%3D%3D--7nR2QpHbO3K0ITI2--hMFaSWCz7jkXcomu3MDZ6w%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1440056768.1594935301; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2890,7 +3191,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED4E:1D9B2B9:5EEAB1AA"
+ "7960:5415:97B99E:E29398:5F10C805"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2900,7 +3201,7 @@
}
},
{
- "ID": "c356be0b3b8092ee",
+ "ID": "3df4290b03920c09",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/blob/gopls/v0.4.0/gopls/main.go",
@@ -2927,16 +3228,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Etag": [
- "W/\"0cd019b5e9eb57d69e735abff31cdef7\""
+ "W/\"3869389b6134207f07da5a02ec105ee5\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -2945,9 +3246,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=EpWGSUaPlfAZGDWwWTWFPnLRcs6N1eKQZQ9Kox17D17sTIpMRw4ta%2F6O%2Fl7BRsInq7jSEWo3P7lKmmgolxJHC51QUm7I2vEN8J8RWY8jd9R6wPYokKAQf867YG%2B5h3liSBOid5xQE1UyDL5SN64hGD%2BiaptBjaKpzhGJZDVpsv3KSjrZBvUC4mrf%2Bl7ni8i%2B8%2FP2RBHFddF4syFkKGL5CT%2F1Y8ne%2BFIbFqF9iRFm%2FtOUsnIuqYBg%2BmxTuWEFlIRqJEpjvdaEC%2FzzakjQn1ADog%3D%3D--h439AHueSwa1rYgG--AuQTvOWbiX4cJxcSOfwvxw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.746498239.1592439211; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:31 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:31 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=s2P%2BUkU%2FEvgqINF%2FszAqVwrI7qo34m6pp6lMSEffsXOp0dfU%2FcV95NeUDQMhVzwBX26nA7CqybAKVb%2FhZ%2FadEc7a1XJAedin1Og2csyus5RNX4Rx6V9iMEz80p8goIn%2BSI9%2F90U%2BGV3gAT1ta1oIyjkeH%2FScmEbcCctGXWjhbisv7Re47VtD7JgeT1qo20EDubzPjdt08TWC37hfe1DyAzu1ygvnLiIhbEdVm0w9%2Fig3KMFF0cEaS1mu1buF8662rM3alPT3vSRaPNmmkcCITA%3D%3D--4jpS%2FHvupTqdOuz8--RJSFK5QMOWqvF1NH%2BSaY7g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.219895373.1594935301; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:01 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -2965,7 +3266,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED52:1D9B2BE:5EEAB1AB"
+ "7960:5415:97B9C2:E293C4:5F10C805"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -2975,7 +3276,7 @@
}
},
{
- "ID": "8ffe99dd1a1c7fc2",
+ "ID": "c042059cefea399e",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/golang/tools/blob/gopls/v0.4.0/gopls/main.go",
@@ -3002,16 +3303,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Etag": [
- "W/\"0cd019b5e9eb57d69e735abff31cdef7\""
+ "W/\"3869389b6134207f07da5a02ec105ee5\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3020,9 +3321,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=YsfdN0I3zGs9BQapcusuPyj2MK9h6CA%2BCinHt57%2FLP4u8Ay2mgveihVJ0GikRZNj6Z%2FMZykNSQVOKrHwY4AE6vpPMAD8JG9NjUxiH779foen24EUZ9GgRHGVPmqUaRfYXaIurgpDC7Cz1EDES3%2FJ3KhIDdsecPoGnW6o5H7Eth4lahPRogTA7o1oQ%2FXyjkCuZtKBgNQ3AsoHsWUcQG6SG%2BEZv9ZQZnBs3a7nS7%2FNWsmP5tQ0c3cdwLb%2FuO4gMAK8VWFvZy3iVFcW5XGGEBzksA%3D%3D--KzR2xysGAWSErx5c--kSJLz6mNMoNK%2FccN4kFfrA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1827303615.1592439212; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:32 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:32 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=05CCCxM7kL4sls7X8J7bV0amsOgIPX50joti8Lzx7nw5fX7pJMjX6%2BpRPUEBTkkU4z1NAAOY4XR273CHBkKz%2ByLPiNYVRozNhPvPPpEanhMPQ0QKWV970gwqOMlX%2B%2FYrOg8tcdRm4fFkmqI03%2BM5DYDAEVh8vnnrGchhUnpuQ9c26FbUFTeBRgq7OAVIhj310LWPbwLDCWve4BIz1RUj%2Be4va4LD1GSu4HpzYBm5wZYUT7AYgrYc0cdBKxCxd87yS7cVjDqAplppq%2FoGwxCgzw%3D%3D--pgipCj5hRqATl25d--bdyenKN7QrptLqUMdb2Bzg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.2123667214.1594935302; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:02 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:02 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3040,7 +3341,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED6E:1D9B2F2:5EEAB1AC"
+ "7960:5415:97B9F2:E2940C:5F10C806"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "8d3b772d100b3f1c",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/golang/tools/raw/gopls/v0.4.0/gopls/main.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "139"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:02 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/golang/tools/gopls/v0.4.0/gopls/main.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97B9F5:E29413:5F10C806"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3050,11 +3424,14 @@
}
},
{
- "ID": "0688443a8934fff8",
+ "ID": "f4434479c23a6769",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/golang/tools/gopls/v0.4.0/gopls/main.go",
"Header": {
+ "Referer": [
+ "https://github.com/golang/tools/raw/gopls/v0.4.0/gopls/main.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -3089,13 +3466,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Etag": [
"\"c237e67e2ea0e2b119bd36fbc50e94144a07567de7150cfe8f57bb02ef914105\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:32 GMT"
+ "Thu, 16 Jul 2020 21:40:02 GMT"
],
"Source-Age": [
"0"
@@ -3120,19 +3497,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "cb7a691344f58bc219dc19230a14725c7c8fce10"
+ "be37d9e5a346108e07c673e44dae75106f240dbe"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "F432:4FBE:50AC89:620A9B:5EEAB1AB"
+ "5188:21B4:1E730:23A38:5F10C806"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439212.166063,VS0,VE110"
+ "S1594935302.400106,VS0,VE100"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3142,7 +3519,7 @@
}
},
{
- "ID": "70e3cdd1c7e0792b",
+ "ID": "bb8d60edeb6bdad9",
"Request": {
"Method": "HEAD",
"URL": "https://go.googlesource.com/image",
@@ -3163,13 +3540,13 @@
"ProtoMinor": 1,
"Header": {
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-vob4PM21Kq4mniD2Aevjkg' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-fyQCCXn07ffrrCXEkSIU9A' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -3188,7 +3565,7 @@
}
},
{
- "ID": "c708ce48430cdee5",
+ "ID": "242467d2d411c11d",
"Request": {
"Method": "HEAD",
"URL": "https://go.googlesource.com/image/+/69e4b8554b2a",
@@ -3215,13 +3592,13 @@
"9224"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-Bejf7MToHFou1dBveyEC6g' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-oc9/thxjqqHAnh+lSHammQ' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -3240,7 +3617,7 @@
}
},
{
- "ID": "9bf390d76185fd63",
+ "ID": "4dedf9414ceea43f",
"Request": {
"Method": "HEAD",
"URL": "https://go.googlesource.com/image/+/69e4b8554b2a/math/fixed/fixed.go",
@@ -3267,13 +3644,13 @@
"114960"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-2AZ6MJ63p4xoQNox2S20Zw' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-w0LZ/U2mcSonMciKmkbQsA' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:02 GMT"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -3292,7 +3669,7 @@
}
},
{
- "ID": "e0ba1c9ee14002f1",
+ "ID": "418d8d4d1ab650c5",
"Request": {
"Method": "HEAD",
"URL": "https://go.googlesource.com/image/+/69e4b8554b2a/math/fixed/fixed.go",
@@ -3319,13 +3696,13 @@
"114960"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-34FQxNC1kmbXoAk9e8N0lw' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-l75F2SUNxxxoT/pytUsqtA' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:32 GMT"
+ "Thu, 16 Jul 2020 21:35:03 GMT"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -3344,7 +3721,7 @@
}
},
{
- "ID": "a4d830d7be5a8520",
+ "ID": "73264f0c849679f3",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/apache/thrift",
@@ -3371,16 +3748,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:33 GMT"
+ "Thu, 16 Jul 2020 21:35:03 GMT"
],
"Etag": [
- "W/\"e9ec96a184bd7897be065d7c06287064\""
+ "W/\"c0fcd3308c8ebe310269a6a71020b85c\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3389,9 +3766,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=26P57cUjo140VPqfSkSP8cupfjtjzy3Ee0vRAvJU8K1hvVogY6NfucrHcXhHHlK68FXxZsyqOd99fK2d%2FTgjX9ZH9Y2xjcJ7KdEtMyC11JYW11V6sYWAKDVjItcc5fp0nCP%2F2cVPxMxgYtthFBCvpSjFI%2BgaWyjoAu0eQn5vgN%2FJ6tcCppqZO6yJahWRVn%2BGHhpVfWe6GT5jUFPuRHrnyQanIgRMOfBgCPAlxcONaJPqSzuOzL343j%2BBKR8rcqrJhLzMUVtMjUfNZHkhUDLaCQ%3D%3D--xMvkvOz8%2BNBA9sCq--89lURKl%2B%2B1mFL38cqkYLyg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.978172875.1592439212; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:32 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:32 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=UU1L9%2BzuL82VTdKHlFV%2FMLCM1eviiH8wUZpOPLBV6%2FI4n%2Fdkq5%2Favl7%2FtXNKP6y4urUU8yjucia0hZsnI7SY1xzt%2FDwy4GLW%2BPw1OwY9pEBqxVN9Xjq9Ntf0KJ9M5OXHYtR3XUxsmRjJl25LebVOszFFe%2Fe7vB6GTCV3DGxoz7PA9Ln4RuKK%2B3cEFqJyqVGa4mTIrFcKa%2FN3z4H%2F6a0PdQ7%2FZXAMK201xMSCobReaGJ68ricAHTKEnsq%2B35lEX4Qai%2BmUT0c8jnwAyhFtv4Q%2FA%3D%3D--PMD3KlPOEKTkDKyS--o62Gs6Yjar98SAxydmxfrA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.858850240.1594935303; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:03 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:03 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3409,7 +3786,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED76:1D9B2F4:5EEAB1AC"
+ "7960:5415:97BA5D:E2942D:5F10C806"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3419,7 +3796,7 @@
}
},
{
- "ID": "052f7fd4296f8041",
+ "ID": "247b234341dd2be0",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/apache/thrift/tree/v0.12.0",
@@ -3446,16 +3823,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:33 GMT"
+ "Thu, 16 Jul 2020 21:35:03 GMT"
],
"Etag": [
- "W/\"988a53f3d040b7401ba11d79d3c7d6b1\""
+ "W/\"2b78fb13e009ad4fbb3b236618ab9b2e\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3464,9 +3841,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=p69VU64BRITHDAHMytaIs%2FavJX6ehoBQAMsgwU%2BeRMSzF7gJzNtRj41cVkmFWPDkT81Xc%2FvfVsvSVnucjkqTMfTRbnXnExElEq%2FZIRtckzBcI%2Fpk3pseSAXTRSZLyu%2FLpwEZthis9mUO5DwuCcw1rzAPLCCd%2B0hxcqNvEl6S6LlvE9fFR6IOQDgEFkqWYFDuQ2n8WrYMGWPr4ALd4oLqaQMmHOooxlPZ%2BnmZh2Inbf7Zk0MaHcw8nHVP2sTefyOk27%2FwiTkPEd%2Fm6fl0wxCarQ%3D%3D--YlfRS2k8bw4LzkFd--ILtcFAHGNw3eq5zBoT5nrA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.458599039.1592439213; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:33 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:33 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=Yl%2F1sUjmG%2BhrgNSdGuPMXD48xG0dPXBlv9d72M6m7pMtMITLFwYqMV3nsjLImWX2PMu89uC4PyXh3j8giCoNBFYxhQlf6GNqF7ABe1flRn76r2DFcBMGuH5whRjdOSHlV0x9H4ray7HFeWyQFlJj73w6o%2BiLN27jfcnUrEP7XgbNdJ5i96qdbXGRKri7cn6qdq%2FT7ePXZFS%2B%2FPee1%2F6%2FEW1K%2B3tdPc8YJVZ1%2FFtSsR6RLgikagCqHs9IH%2BymLiOKihAwl4DYQzh167iDFGDyXw%3D%3D--1l40R6FMUEMyB%2BXu--TZ3fTxOCPLX47wLJw9z5fw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1778450152.1594935303; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:03 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:03 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3484,7 +3861,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103ED97:1D9B334:5EEAB1AD"
+ "7960:5415:97BAA3:E29510:5F10C807"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3494,7 +3871,7 @@
}
},
{
- "ID": "882cc02d28f9528b",
+ "ID": "b3b25ad998e6fc4a",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/apache/thrift/blob/v0.12.0/lib/go/thrift/client.go",
@@ -3521,16 +3898,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:34 GMT"
+ "Thu, 16 Jul 2020 21:35:04 GMT"
],
"Etag": [
- "W/\"346b8739ad7416338ecc76a91e7334fa\""
+ "W/\"faccca9aebb5c2792f6346b65023bb8c\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3539,9 +3916,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Qf6LgQ7o%2BhXm3zVxf2T1VFca9SzVCapiLtF%2FG5je0a1Gatv8CZqJqFOmt4OGmTTN5FRG8khxXWt0sHaxrwzh5kMMug2I8cbyktuK61L0xfTElwoDq6OSQci9MMedSs6oqyzSJOIvoHW2Mw8Kj3OXyBwxKJZFUyCCQf%2FisMA2LxLE9d%2BuSoJVquldfQktp8fhEhaVePMDv6EMOddGHAcsnszSNppzUHIVUWD2OD%2Bxvo138GnwXml3zkfowFJYwr3A7jw2UcAYvlCuaAGrXZahaA%3D%3D--reN2NcLRxn7%2BmX5J--1CkOdUQuGQoow592rDJ4DA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.34150159.1592439213; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:33 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:33 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=FXFAGprFrNLzs1hFGh4FSyU0ovTpJq8yQ56uE8njStb04fWSZmTkacI1LN6dPLrPUt2bJIXwVMuCJ571qvsuDRZy474Z16uGF6XTod7weXGtKkGNx3u4Q4WZa7awwFEHiuy3g4%2B%2FGV7GkFGMbYzapkQFdBQdQiGj7tLiPjWjU1liTKaW%2BiKQRp8LnVd0CKw69WG%2FCA5YPKOxo5vXr0lrEfJTNKImCwlT4A9WNK0aLWxtI5K0LtQfzyy8tEYwUlPtZPWoKJpO0V3irgHLYiGfNw%3D%3D--f5wJfDYfSSdYGevG--4jCRA0KO%2Bw%2Btl4Elw6aNhg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1113850285.1594935304; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3559,7 +3936,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDA2:1D9B348:5EEAB1AD"
+ "7960:5415:97BACD:E29555:5F10C808"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3569,7 +3946,7 @@
}
},
{
- "ID": "eb46d6e5bc77746e",
+ "ID": "133688f376f99368",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/apache/thrift/blob/v0.12.0/lib/go/thrift/client.go",
@@ -3596,16 +3973,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:34 GMT"
+ "Thu, 16 Jul 2020 21:35:04 GMT"
],
"Etag": [
- "W/\"346b8739ad7416338ecc76a91e7334fa\""
+ "W/\"faccca9aebb5c2792f6346b65023bb8c\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3614,9 +3991,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=bx2iHn3DiyDQyctzlRkb6ozKEOlyDSqeUfAFNTPOORT4%2B44LMxYZ2Iqvrp7zK25WXVDZmCmwsNExW3iv2oJtQLRUy6240XFRoCFs%2B4Xw%2F%2F1%2BI6J6K7pfUJsWIblbH2M%2B7sIsUDxwfrcfZbIN9UFbjvBWQri6y4wcf2TBkY4kqJCxXtciU3NlHEMFWMs%2FvkvMulQUntNYK6mUfoADKNWPxeCEjl%2BoSX7G6O6CddjK3s66Jy9Bb2RLDcZ6y%2B5ENKPmCZPX%2Fb8fYhKjLWF5ydYgKw%3D%3D--%2Fe3up%2BNeAnJ3bzWS--KqtJzbWrv4z6PhtmbdZjdw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1408586601.1592439214; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:34 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:34 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=dwXaKE5nH29JwZu5SGF62UBHgnPmoVvfQx2iRiMKZUk3Lm7FBj36z%2BoepsVI6uaWo768m3cYKmrjzpprkqPqIf2Pq52S546DEv8xQAihvxclK9u8SPRyw8fk14JHs2dnWvssd0iEi0W7Ldw8N58RFcRmWYk0o4BTjFK6Fn5xnmJWILT88ksJUo3kdSCL08eguQkhliXDj%2B7g%2Bl21FNykjbasstNxIAmRpUx7RR89Xfj7n%2F5%2B4h%2F%2BXEYa2wcyin4tMxLzelHvDE2eNyV3weLxww%3D%3D--Fv0fuPgADVUpz%2BPd--kI2uo62rB5vhdHWw%2BqhsTA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.513566189.1594935304; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3634,7 +4011,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDA7:1D9B351:5EEAB1AE"
+ "7960:5415:97BAEC:E2957C:5F10C808"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "ed90e24c3d84c26d",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/apache/thrift/raw/v0.12.0/lib/go/thrift/client.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "145"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:04 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/apache/thrift/v0.12.0/lib/go/thrift/client.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97BAEE:E2957F:5F10C808"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3644,11 +4094,14 @@
}
},
{
- "ID": "c7249caac9483c5a",
+ "ID": "08a6bb546b8c54fa",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/apache/thrift/v0.12.0/lib/go/thrift/client.go",
"Header": {
+ "Referer": [
+ "https://github.com/apache/thrift/raw/v0.12.0/lib/go/thrift/client.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -3683,13 +4136,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:34 GMT"
+ "Thu, 16 Jul 2020 21:35:04 GMT"
],
"Etag": [
"\"b0305a7e8a46c60c7e2147e9675bfab1c350dc8773b1fd705548cafb16381cf2\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:34 GMT"
+ "Thu, 16 Jul 2020 21:40:04 GMT"
],
"Source-Age": [
"0"
@@ -3714,19 +4167,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "1a332ab33834e5ee350ba4ec9e26d3736742772e"
+ "776c94a2f35def2014e9530b5d8a08a542fbdb7f"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "4526:3E58:56EE06:6934CF:5EEAB1AD"
+ "9730:2749:1E5A6:23677:5F10C807"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439214.141049,VS0,VE145"
+ "S1594935304.449227,VS0,VE112"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3736,7 +4189,7 @@
}
},
{
- "ID": "f16390627574e754",
+ "ID": "b741deef134610c5",
"Request": {
"Method": "GET",
"URL": "https://cloud.google.com/go/spanner?go-get=1",
@@ -3769,7 +4222,7 @@
"text/html"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:34 GMT"
+ "Thu, 16 Jul 2020 21:35:04 GMT"
],
"Expires": [
"0"
@@ -3790,7 +4243,7 @@
"Accept-Encoding"
],
"X-Cloud-Trace-Context": [
- "ceb9d7cc520ae2d2c105e20cb9153cd7"
+ "0bcc60815b840d511c31bcdca7919249"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3806,7 +4259,7 @@
}
},
{
- "ID": "2957966358b23177",
+ "ID": "1845a1c6d16f0536",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/googleapis/google-cloud-go",
@@ -3833,16 +4286,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:35 GMT"
+ "Thu, 16 Jul 2020 21:35:05 GMT"
],
"Etag": [
- "W/\"0a442882c9c2076754f5ec0b0df86456\""
+ "W/\"5a41c492308ec623c862b0a7fc0743f2\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3851,9 +4304,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=kRfZ0%2FqPwVPsUuSj2vHOAUiO270uKF4cQ8PWWVDjF9%2FVkCxQ5CTaHoLc5RgTPFHdj2zKnAuW4KqZxIRNiaxLb4ZcO2XfwjFn2yBbW4NpKY0%2BZFclYsSqsFZJ0nisGyYRqDj0wL7V4CC0e1LgzIbZz8BGFvygxuucpRYX%2BClqCyf699xyAiTwGYZZdU1rCuZWQk2Cpp4fJzL5qJWMAgK%2B7BV1QdDcipBAv%2FiiIBPKQKqN2suXIhGmAv%2FME7L52E2pKpwnP%2Bgrll2mxMrDs9IAMw%3D%3D--HaG7HjaAlQYb0hY%2F--UUEfQwCDem7b4YZCYSqHXQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.726769237.1592439214; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:34 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:34 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=X20Km1eBvRS%2Bagy3uy12dDEDVVfljX80Iu%2Fb0PLYqx2PlmqBD83%2F5SXiVaaAaGDntVx214z%2Bgx3KsuFT64qo65hu5BqNKw2911byoOaIK8tB2Tb5hAVyzrGIPaaKIwOhcCYAcHPotzd304W1fhH0aN0%2F%2BOj5JkJsY7BqUELSbbQe4xophqhJUr4mWlHS%2BN7zYpbLU2ae7n%2BEd9JOff1HpQ8ND0kgfYa1DQZX0BaQtvBD52LObPVgRxzIYVAWTt36dmi0XpkmzfCXCa5c6Op1UQ%3D%3D--p4Iqse2GZPFmPT%2Br--tLawGGRFuwuPq8gbf97AxQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.449105061.1594935304; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:04 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3871,7 +4324,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDB4:1D9B352:5EEAB1AE"
+ "7960:5415:97BB1B:E29596:5F10C808"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3881,7 +4334,7 @@
}
},
{
- "ID": "5127a9c6863ec681",
+ "ID": "5cf2228c8a2c49af",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/googleapis/google-cloud-go/tree/spanner/v1.0.0/spanner",
@@ -3908,16 +4361,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:35 GMT"
+ "Thu, 16 Jul 2020 21:35:05 GMT"
],
"Etag": [
- "W/\"9c84da33e1251c058a76602c5888b7da\""
+ "W/\"1c2601ba58ecf9e7aba58841e4c772ce\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -3926,9 +4379,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=b2jb2bRsT%2FDZ%2BSNzBA4o6hYMPrPBwPKGw3RdBEl6jafO3uzP%2FuqprrpWvXlSv3gLlwmN8k2t1TrXd8ZS%2FanEwobvWCWqHg2Zic8SAkSWXFOH2cara7iQ5eNgzUFWwvwJ9V9nKgSbnl8YZZUdFAO7A3GfpQuibNMTFin5SYK524%2FbrCQQ4NOyS%2BhNal7eeYE2xzD5dEezCOY78tRSLJqGv%2BFzldc0X1359ODKjBH91BqTkXZhABypaESoaOvFhBDzDC6IEtiikbIPQlUOMXP3dw%3D%3D--CoGz08DZEBJ%2Ficmk--VEXZYi0tRvg9WrUEcHry1Q%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1031889179.1592439215; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:35 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:35 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=hRfllOY3uJSHKH1auud5MjhNiv%2BRSWBbh7UIeZWxWW83Ee1100UAOcabbRtnRi4Yr9gQfUzTB3P4KBZ1Om4Dk1asRVMg0vGuC%2F2UhNPLsV57NpqDDCnmodeHq7oBPpPgfRvNPHRlDCJwmAKy1XDwv0UAKM2%2F%2BBUOKKX4s8HHzkMqGhp9t0v93DWayd9x8GmDAdiWNCY0IPm9xacpunmjqDitsg3ilLDfKlxxXA7lOb7h44NzlSJu0np0gIhWRq%2BvBOIf3gJ7rAtvlVzQkCwSvA%3D%3D--ovKssDh%2FPT4gdJk3--k5F5ukpnIaGr2El0MJaffw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1063210913.1594935305; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -3946,7 +4399,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDDD:1D9B3AC:5EEAB1AF"
+ "7960:5415:97BB5B:E29629:5F10C809"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -3956,7 +4409,7 @@
}
},
{
- "ID": "fe3ed5e2750a13f4",
+ "ID": "442ee4956cfaa2b7",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/googleapis/google-cloud-go/blob/spanner/v1.0.0/spanner/doc.go",
@@ -3983,16 +4436,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:36 GMT"
+ "Thu, 16 Jul 2020 21:35:05 GMT"
],
"Etag": [
- "W/\"a8114efe2f7b46ec503e1434f6695608\""
+ "W/\"3f3889081e0dee125bcb08bd72b97e27\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -4001,9 +4454,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=8WQRpFhDT%2B1nqLhCULadwKMNQ1yzWCvSmb%2FWGXdJl6SE9%2F%2Fj0HJKpfAJAcHiiXYSf0%2FkAEa9451KpItK5r96IBOkBqOssu02zBn89RolZlsdoHvKKkMsuo70Xs80JU66lMoH7tHZ5r1mrvBaUulkDn4phqW0jhOs8cHj0z6cKqy%2FSl0QCLSp%2Bul1hkbEDQr58jgjptEC%2FjA9pS99wHxGOUZj5YcaeUZSPY8j5FQo18iXKCLvDddFqI9QOFcWSTQang%2FnHXCjvnBAm4RpUvtKYg%3D%3D--RsJj4mX95LtR7l1b--cequW3uCqlk8pymO2k68aw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.449339745.1592439215; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:35 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:35 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=ydGZbKdDw8XUxTwyPqhWLjK09DvPxl%2BfK6hzQyWtYFT%2FPd7yeiLD0HQUADrFzWX2wgr8Ojt5AkzfybpaS%2FD%2B8lLlwXkZJwwQxGB%2BrHSazTTSs6HsW0jUs4EUn62oyJTHlF7%2F%2FCzqqAME3Knp1gGaiLm5pVxADNBQMWvVAaKhHzT8oJNROhKXIv5dDC7SXZHlX478jRfRn%2Fe7rG3tHfRwN8uMusihfciRn%2BSgRKhA3zMd%2Bu8%2FMyq7nBf2p%2FUwjSGLSHnohp1BDx95uQPynpeSBg%3D%3D--yIRT7eOfvgVS%2Bp2t--CVI2%2BlsLrfnSKqCxUBjRYg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1425040379.1594935305; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -4021,7 +4474,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDE3:1D9B3B5:5EEAB1AF"
+ "7960:5415:97BB8B:E29678:5F10C809"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -4031,7 +4484,7 @@
}
},
{
- "ID": "13256943114c686f",
+ "ID": "938a0948e5bc42bc",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/googleapis/google-cloud-go/blob/spanner/v1.0.0/spanner/doc.go",
@@ -4058,16 +4511,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:36 GMT"
+ "Thu, 16 Jul 2020 21:35:05 GMT"
],
"Etag": [
- "W/\"a8114efe2f7b46ec503e1434f6695608\""
+ "W/\"3f3889081e0dee125bcb08bd72b97e27\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -4076,9 +4529,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=ruf5Dmte1bVrZ%2FbuivVB%2FE%2FYHZ%2FWgNqdiGlOWkQBFlHXU6V2jtmqKOFAxEkwexRxXnugDrZJPWcG1ncIfybaklaiKZYyfq41tYaEHYU2JaY2d5pEDeUoQfdUY%2BPjYvxuNArNRZ1VvW6FGZG%2FDR8fpSVShsUmt7mTJuu%2BHoFCssxXHzLKBhrsztPSZFYRG3FLfDwxqZfP55H1TwV0kipZ%2BIwWt4K2YUClhGmhPSAhM46tJO60%2BhJj3YnUEkPMNc%2Fmco1e8gs9q1GfPsESJr6fLw%3D%3D--iKAaBTv%2BPMFYzQ%2F0--SwH%2Bd0f8jzLS21fNp1SV2Q%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.924976334.1592439216; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:36 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:36 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=n38VrlrqNYbad6kZ4BRFIoAVHQKB71p79JeZ80zOiqishfTA1LD2%2FTWR26%2BVdVQMEUyXNnH832hZwVzTfOIs6bWPaNcY5HWR19jV2kXK7FlL%2FHQDS4dXSmMRLh57kgsGzIMQRepHoE5mqtNTsEOHlsJwDABbSyhRGwB94qiL6dvw8SoadnXUJlUheyueqVaxn%2FmHykCoE%2FouLr7Sf8c%2BzjEv8F0wemLTbGZY9AyfKqHCv9OzJJY9TC%2F5OaeYH0uFwi%2BERC6x924nyRI08TCzYg%3D%3D--%2BrvsDd4ZPLi77e83--siABeMRzgwhZpn6eE5EAWw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.479603650.1594935305; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:05 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -4096,7 +4549,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EDEF:1D9B3C7:5EEAB1B0"
+ "7960:5415:97BBAE:E296A9:5F10C809"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -4106,11 +4559,87 @@
}
},
{
- "ID": "85f503b2d2f86708",
+ "ID": "c8d146c08441d679",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/googleapis/google-cloud-go/raw/spanner/v1.0.0/spanner/doc.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "156"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:06 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/googleapis/google-cloud-go/spanner/v1.0.0/spanner/doc.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97BBB0:E296AC:5F10C809"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "8b68eb9fb68cf516",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/googleapis/google-cloud-go/spanner/v1.0.0/spanner/doc.go",
"Header": {
+ "Referer": [
+ "https://github.com/googleapis/google-cloud-go/raw/spanner/v1.0.0/spanner/doc.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -4145,13 +4674,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:36 GMT"
+ "Thu, 16 Jul 2020 21:35:06 GMT"
],
"Etag": [
"\"c728b3a4510d5c71f74d50cfa0de855ea9346f6d8cba71b30e1efca675acb9eb\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:36 GMT"
+ "Thu, 16 Jul 2020 21:40:06 GMT"
],
"Source-Age": [
"0"
@@ -4176,19 +4705,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "55b35aca0f9fa2e86d071f6c417c060a41db81ae"
+ "07510a432b03f7625234d42b1ed82d2b996aa620"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "1D66:101E:B96F:20442:5EEAB1B0"
+ "ABC2:2FEB:1F885:24C9C:5F10C809"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439216.224209,VS0,VE102"
+ "S1594935306.054213,VS0,VE105"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -4198,7 +4727,7 @@
}
},
{
- "ID": "37ebde095da79dc6",
+ "ID": "6dd43d606fe8697c",
"Request": {
"Method": "GET",
"URL": "https://badc0de.net/pkg/glagolitic?go-get=1",
@@ -4232,7 +4761,7 @@
"text/html"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:36 GMT"
+ "Thu, 16 Jul 2020 21:35:06 GMT"
],
"Etag": [
"\"5ab05848-149\""
@@ -4248,7 +4777,7 @@
}
},
{
- "ID": "6a45a0a215a4ac21",
+ "ID": "541b2ed5b21ae196",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/ivucica/go-glagolitic",
@@ -4278,16 +4807,16 @@
"en"
],
"Content-Length": [
- "31635"
+ "33268"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-bGTmqCRJartov5Mj'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-Rd9UFHXrZ5WwxSCj'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:36 GMT"
+ "Thu, 16 Jul 2020 21:35:06 GMT"
],
"Dc-Location": [
"ash1"
@@ -4296,8 +4825,7 @@
"nginx"
],
"Set-Cookie": [
- "csrftoken=Vhie6aJZm01M1oVinjLvL97rnLOkB4Wz5eG2yHuntu0pb9G5pZAAiMQzUwVzRuEE; expires=Thu, 17-Jun-2021 00:13:36 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=DWxIAIF91WQc1T95VRTcazStaOaI4L1bCJK56BymaqpSgPm9kqFhlGXDCgI6xElG; expires=Thu, 15-Jul-2021 21:35:06 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -4306,7 +4834,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "b0d69ab09bd8febf"
+ "b715f6afad8a753c"
],
"X-Cache-Info": [
"caching"
@@ -4321,26 +4849,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.157829999924"
+ "0.267607927322"
],
"X-Request-Count": [
- "1084"
+ "2305"
],
"X-Served-By": [
- "app-1133"
+ "app-1127"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "3baab18f58d1edcb",
+ "ID": "c6a1977cf6ee407e",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/ivucica/go-glagolitic/src/92f736eb02d6",
@@ -4370,16 +4898,16 @@
"en"
],
"Content-Length": [
- "31648"
+ "33281"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-ZD1Y4pQGT0HJS8fv'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-zfSQnWTC2u7B7TQT'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Dc-Location": [
"ash1"
@@ -4388,8 +4916,7 @@
"nginx"
],
"Set-Cookie": [
- "csrftoken=0yb39qvBVSNacwjgQNw3sOOkUpjhbl5ZDkQ0DpkX0WyuL3wtCUfqOGcQ3wxVsF1S; expires=Thu, 17-Jun-2021 00:13:37 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=anblHyJAGw5uxOMrX3sxZWJPo5unzXx8x0arhRbAvgqVnGu1uHzpFY138f0V4BQf; expires=Thu, 15-Jul-2021 21:35:07 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -4398,7 +4925,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "2fe5e33fc3f2fde7"
+ "3ff1b6d1838c916b"
],
"X-Cache-Info": [
"caching"
@@ -4413,26 +4940,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.146170854568"
+ "0.16156411171"
],
"X-Request-Count": [
- "708"
+ "3558"
],
"X-Served-By": [
- "app-1103"
+ "app-1128"
],
"X-Static-Version": [
- "519a8174b807"
+ "d6340727c953"
],
"X-Version": [
- "519a8174b807"
+ "d6340727c953"
]
},
"Body": ""
}
},
{
- "ID": "1a2e5129c4297142",
+ "ID": "8bee389ae89c3cd6",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/ivucica/go-glagolitic/src/92f736eb02d6/doc.go",
@@ -4462,16 +4989,16 @@
"en"
],
"Content-Length": [
- "31663"
+ "33296"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-ycRWkkCuKFMdkB5N'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-VfpUHOgL5cSalUPZ'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Dc-Location": [
"ash1"
@@ -4480,8 +5007,7 @@
"nginx"
],
"Set-Cookie": [
- "csrftoken=NlVYrfQSrAFDeDFdyvxQASrnJerccIQTN7kmLeedGrMs0DDamSE7crElFQiqx2cL; expires=Thu, 17-Jun-2021 00:13:37 GMT; Max-Age=31449600; Path=/; secure",
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
+ "csrftoken=Q0Jj4GALZO6pHR4HuDVDWmVh7Rgqk6FHLEHA8H8FBUWD1lTmJk1d1yiKQi02Jz9O; expires=Thu, 15-Jul-2021 21:35:07 GMT; Max-Age=31449600; Path=/; secure"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -4490,7 +5016,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "dbfffbf983eaf6ef"
+ "675031ff681cd445"
],
"X-Cache-Info": [
"caching"
@@ -4505,26 +5031,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.112347126007"
+ "0.164324045181"
],
"X-Request-Count": [
- "4631"
+ "4767"
],
"X-Served-By": [
- "app-1128"
+ "app-1116"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "8b2abcb0740ec66b",
+ "ID": "26033f3cb6c9e135",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/ivucica/go-glagolitic/src/92f736eb02d6/doc.go",
@@ -4554,16 +5080,16 @@
"en"
],
"Content-Length": [
- "31663"
+ "33296"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-ycRWkkCuKFMdkB5N'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
+ "script-src 'unsafe-eval' 'strict-dynamic' 'unsafe-inline' 'self' http: https: https://d301sr5gafysq2.cloudfront.net 'nonce-VfpUHOgL5cSalUPZ'; style-src 'self' 'unsafe-inline' https://aui-cdn.atlassian.com https://d301sr5gafysq2.cloudfront.net; report-uri https://web-security-reports.services.atlassian.com/csp-report/bb-website; default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: *; connect-src bitbucket.org *.bitbucket.org bb-inf.net *.bb-inf.net analytics.atlassian.com as.atlassian.com api-private.stg.atlassian.com api-private.atlassian.com cofs.staging.public.atl-paas.net cofs.prod.public.atl-paas.net intake.opbeat.com api.media.atlassian.com api.segment.io xid.statuspage.io xid.atlassian.com xid.sourcetreeapp.com bam.nr-data.net sentry.io bqlf8qjztdtr.statuspage.io https://d301sr5gafysq2.cloudfront.net; object-src about:; base-uri 'self'"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Dc-Location": [
"ash1"
@@ -4578,7 +5104,7 @@
"Cookie, Accept-Language, Accept-Encoding"
],
"X-B3-Traceid": [
- "dbfffbf983eaf6ef"
+ "675031ff681cd445"
],
"X-Cache-Info": [
"cached"
@@ -4593,26 +5119,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.112347126007"
+ "0.164324045181"
],
"X-Request-Count": [
- "4631"
+ "4767"
],
"X-Served-By": [
- "app-1128"
+ "app-1116"
],
"X-Static-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
],
"X-Version": [
- "519a8174b807"
+ "0a6bd24aed98"
]
},
"Body": ""
}
},
{
- "ID": "f55c527f06f087e7",
+ "ID": "33712ef9b78ddeca",
"Request": {
"Method": "HEAD",
"URL": "https://bitbucket.org/ivucica/go-glagolitic/raw/92f736eb02d6/doc.go",
@@ -4648,7 +5174,7 @@
"text/plain"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Dc-Location": [
"ash1"
@@ -4662,9 +5188,6 @@
"Server": [
"nginx"
],
- "Set-Cookie": [
- "bb_user=; expires=Thu, 01-Jan-1970 00:00:00 GMT; httponly; Max-Age=0; Path=/; secure"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
],
@@ -4672,7 +5195,7 @@
"Accept-Language, Cookie"
],
"X-B3-Traceid": [
- "3fe374b0d528d800"
+ "fae47980713bbf12"
],
"X-Cache-Info": [
"caching"
@@ -4687,26 +5210,26 @@
"SAMEORIGIN"
],
"X-Render-Time": [
- "0.0726299285889"
+ "0.0541708469391"
],
"X-Request-Count": [
- "1224"
+ "4701"
],
"X-Served-By": [
- "app-1104"
+ "app-1133"
],
"X-Static-Version": [
- "519a8174b807"
+ "d6340727c953"
],
"X-Version": [
- "519a8174b807"
+ "d6340727c953"
]
},
"Body": ""
}
},
{
- "ID": "8fab840ac471e03e",
+ "ID": "b4aef22d345d100c",
"Request": {
"Method": "GET",
"URL": "https://cuelang.org/go?go-get=1",
@@ -4730,7 +5253,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "113361"
+ "19874"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -4742,10 +5265,10 @@
"text/html; charset=UTF-8"
],
"Date": [
- "Tue, 16 Jun 2020 16:44:16 GMT"
+ "Thu, 16 Jul 2020 16:03:53 GMT"
],
"Etag": [
- "\"5784f61cd8408d51c05aa075aba33511-ssl\""
+ "\"d75ce5551f91b2a0e89fdee125591065-ssl\""
],
"Server": [
"Netlify"
@@ -4754,14 +5277,14 @@
"max-age=31536000"
],
"X-Nf-Request-Id": [
- "fa9f472d-9454-4e3b-9026-a6d9cbaafe65-4882954"
+ "65e5422f-ff7a-4ef6-9a2a-02fc6bcebcc7-10624247"
]
},
"Body": "PGh0bWw+CjxoZWFkPgo8bWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD11dGYtOCIvPgo8bWV0YSBuYW1lPSJnby1pbXBvcnQiIGNvbnRlbnQ9ImN1ZWxhbmcub3JnL2dvIGdpdCBodHRwczovL2N1ZS5nb29nbGVzb3VyY2UuY29tL2N1ZSI+CjxtZXRhIG5hbWU9ImdvLXNvdXJjZSIgY29udGVudD0iY3VlbGFuZy5vcmcvZ28gaHR0cHM6Ly9jdWUuZ29vZ2xlc291cmNlLmNvbS9jdWUgaHR0cHM6Ly9jdWUuZ29vZ2xlc291cmNlLmNvbS9jdWUvJiM0MzsvbWFzdGVyey9kaXJ9IGh0dHBzOi8vY3VlLmdvb2dsZXNvdXJjZS5jb20vY3VlLyYjNDM7L21hc3RlcnsvZGlyfS97ZmlsZX0iPgo8bWV0YSBodHRwLWVxdWl2PSJyZWZyZXNoIiBjb250ZW50PSIwOyB1cmw9aHR0cHM6Ly9nb2RvYy5vcmcvY3VlbGFuZy5vcmcvZ28vIj4KPC9oZWFkPgo8Ym9keT4KTm90aGluZyB0byBzZWUgaGVyZTsgPGEgaHJlZj0iaHR0cHM6Ly9nb2RvYy5vcmcvY3VlbGFuZy5vcmcvZ28vIj5zZWUgdGhlIHBhY2thZ2Ugb24gZ29kb2M8L2E+Lgo8L2JvZHk+CjwvaHRtbD4="
}
},
{
- "ID": "573fa1a909900f43",
+ "ID": "ff3a6b16ef8b08bc",
"Request": {
"Method": "HEAD",
"URL": "https://cue.googlesource.com/cue",
@@ -4782,13 +5305,13 @@
"ProtoMinor": 1,
"Header": {
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-vt7BI5d1+PbGuG31/si2Lw' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-pVpxqPs8twDErEnEByrFQQ' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains; preload"
@@ -4807,7 +5330,7 @@
}
},
{
- "ID": "e18e9c7ae01400bb",
+ "ID": "1f7c1e1e2a84f087",
"Request": {
"Method": "HEAD",
"URL": "https://cue.googlesource.com/cue/+/v0.0.9",
@@ -4834,13 +5357,13 @@
"14214"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-j7CelyTWEY+I7CW12LiSMQ' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-cs80xUtQ9W+76m4WRjzNcg' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Expires": [
"Mon, 01 Jan 1990 00:00:00 GMT"
@@ -4865,7 +5388,7 @@
}
},
{
- "ID": "ac97207c2993ed83",
+ "ID": "73b890400f4e8ddc",
"Request": {
"Method": "HEAD",
"URL": "https://cue.googlesource.com/cue/+/v0.0.9/cuego/doc.go",
@@ -4892,13 +5415,13 @@
"20509"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-H/ap8/xOu0hwJLHEh3tnng' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-NJ+rRJPhaRA+6QCW4uV/Ug' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Expires": [
"Mon, 01 Jan 1990 00:00:00 GMT"
@@ -4923,7 +5446,7 @@
}
},
{
- "ID": "7fae8e38d88dc329",
+ "ID": "a476373697bad5b9",
"Request": {
"Method": "HEAD",
"URL": "https://cue.googlesource.com/cue/+/v0.0.9/cuego/doc.go",
@@ -4950,13 +5473,13 @@
"20509"
],
"Content-Security-Policy-Report-Only": [
- "script-src 'nonce-c54v/8gzW4oaaPJPvQ4upg' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
+ "script-src 'nonce-dy9fdsM5eqNJ8LE1I5f5Ow' 'unsafe-inline' 'strict-dynamic' https: http: 'unsafe-eval';object-src 'none';base-uri 'self';report-uri https://csp.withgoogle.com/csp/gerritcodereview/1"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:37 GMT"
+ "Thu, 16 Jul 2020 21:35:07 GMT"
],
"Expires": [
"Mon, 01 Jan 1990 00:00:00 GMT"
@@ -4981,7 +5504,7 @@
}
},
{
- "ID": "219db961d8d08f3c",
+ "ID": "cba4cc159bf4e7c6",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita",
@@ -5008,28 +5531,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce384874e0ca-IAD"
+ "5b3ed9e9fc09e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f37310000e0ca37320200000001"
+ "03fb26863b0000e0caa5917200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-XHq/Y+BKyZil+PveTHqsZw=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-QEah+zgrHziElZdiqTU/pQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:38 GMT"
+ "Thu, 16 Jul 2020 21:35:08 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-07-lb-gprd"
+ "fe-04-lb-gprd"
],
"Gitlab-Sv": [
- "web-01-sv-gprd"
+ "web-16-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -5039,10 +5562,10 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=df9d9a49d034c5c6a2f846cddb10754a31592439217; expires=Sat, 18-Jul-20 00:13:37 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqQTVaalk0WmpOaExUQTVPR0l0TkRBM09TMDRNakJqTFdVNFlqY3laREk0WWpVNE5DST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--daded53ef9366ad6e0b1a6cf389777bacb443b77; path=/; expires=Mon, 18 Jun 2040 00:13:38 -0000; secure; HttpOnly; SameSite=None",
+ "__cfduid=d01edb97dfc3378014ab93a5dda0442161594935307; expires=Sat, 15-Aug-20 21:35:07 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqbGxOV1JpTWpjMExUY3dZelF0TkdFNE5DMDRaVFkyTFRBNE9HUmlPV0kyWW1NeFpTST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--6807ad5e8173ba1b3d3e8aed661568ac782ef8ae; path=/; expires=Mon, 16 Jul 2040 21:35:07 -0000; secure; HttpOnly; SameSite=None",
"event_filter=all; path=/; Secure; SameSite=None",
- "_gitlab_session=caeb455795af310a66f3a3223b22cd8a; path=/; expires=Thu, 18 Jun 2020 02:13:38 -0000; secure; HttpOnly; SameSite=None"
+ "_gitlab_session=8c968252691e6364329019b3d31ba094; path=/; expires=Thu, 16 Jul 2020 23:35:08 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5063,10 +5586,10 @@
"none"
],
"X-Request-Id": [
- "5SDY3oZW9Wa"
+ "mtHDE4X743"
],
"X-Runtime": [
- "0.280651"
+ "0.377098"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5079,7 +5602,7 @@
}
},
{
- "ID": "01e33efea9eb0c43",
+ "ID": "cd8de0fb8eaca42e",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/tree/v1.4.1",
@@ -5106,19 +5629,19 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce3a7b6ae0ca-IAD"
+ "5b3ed9ecd955e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f388b0000e0ca3733b200000001"
+ "03fb2688040000e0caa5933200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-c6cVFUIXCeFSVY0BkSce/g=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-OVmxId7O8iDARk/UYo3/CQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:38 GMT"
+ "Thu, 16 Jul 2020 21:35:08 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
@@ -5127,7 +5650,7 @@
"fe-06-lb-gprd"
],
"Gitlab-Sv": [
- "web-12-sv-gprd"
+ "web-09-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -5137,9 +5660,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d1832b1efbce94afb6b9eca5c2dc097d71592439218; expires=Sat, 18-Jul-20 00:13:38 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqRXpOalU1WkRZekxUTTRZall0TkRjMlpTMDRZalUxTFRZd01EaGxPVE0xT1RCbE1pST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--a38f6e9b8170a24853471fd3f75cb4ee23c315d9; path=/; expires=Mon, 18 Jun 2040 00:13:38 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=c87811046564c9a27dfab41d6cf1bbfc; path=/; expires=Thu, 18 Jun 2020 02:13:38 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d69cdbff61af819d73381dc96111ee3251594935308; expires=Sat, 15-Aug-20 21:35:08 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6Iklqa3pZelF3WkRjd0xUUmpZV1l0TkdRNVl5MWlaVEJsTFdRM1ltSmpZak0wT1Rka1pDST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--b97cb216053f9281219e0ca2d9cce41cbb4d2cec; path=/; expires=Mon, 16 Jul 2040 21:35:08 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=339d5a8f51cbbef09818bd4d8c52f297; path=/; expires=Thu, 16 Jul 2020 23:35:08 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5160,10 +5683,10 @@
"none"
],
"X-Request-Id": [
- "TEWqIQPdOV"
+ "WAwtNO0o6D"
],
"X-Runtime": [
- "0.119373"
+ "0.214424"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5176,7 +5699,7 @@
}
},
{
- "ID": "c7a6d66a3bcd2330",
+ "ID": "8c4245b97d584057",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/blob/v1.4.1/event.go",
@@ -5203,28 +5726,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce3bad16e0ca-IAD"
+ "5b3ed9ee9c44e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f39440000e0ca37342200000001"
+ "03fb2689200000e0caa593e200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-/CPN6Ty3+lS4YJ1SR7gxAQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-DeaY91B7ZJXVXYu+HaHWtg=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:39 GMT"
+ "Thu, 16 Jul 2020 21:35:08 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-01-lb-gprd"
+ "fe-04-lb-gprd"
],
"Gitlab-Sv": [
- "web-07-sv-gprd"
+ "web-22-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -5234,9 +5757,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d1832b1efbce94afb6b9eca5c2dc097d71592439218; expires=Sat, 18-Jul-20 00:13:38 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltRTNNRFptWXpSbExUSTNZakF0Tkdaak5TMWlaR0prTFdabFlqUXhZekpoWlRKalpTST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--ad3fad3a3319bb6b2509692039a67f23f5b781b6; path=/; expires=Mon, 18 Jun 2040 00:13:38 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=e448ad2f84e6fa5c00a70e787e86b319; path=/; expires=Thu, 18 Jun 2020 02:13:39 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d69cdbff61af819d73381dc96111ee3251594935308; expires=Sat, 15-Aug-20 21:35:08 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltSXpNakkyTWpjM0xUSXlOelF0TkdFM01DMDVPV00yTFdOak5EQmxNalV6T1dJM1ppST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--7c53aa7637f08546fb152ab8289665317344b61b; path=/; expires=Mon, 16 Jul 2040 21:35:08 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=d9512871d2b05531ee0cdfb9298b6084; path=/; expires=Thu, 16 Jul 2020 23:35:08 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5257,10 +5780,10 @@
"none"
],
"X-Request-Id": [
- "I16zXnDlId6"
+ "zwRHHitSC63"
],
"X-Runtime": [
- "0.642093"
+ "0.162600"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5273,7 +5796,7 @@
}
},
{
- "ID": "9fbb746d356a7232",
+ "ID": "3f83d815fc6721b9",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/blob/v1.4.1/event.go",
@@ -5300,19 +5823,19 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce400b55e0ca-IAD"
+ "5b3ed9f00edde0ca-IAD"
],
"Cf-Request-Id": [
- "03665f3c080000e0ca37363200000001"
+ "03fb268a060000e0caa594a200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-IpaNCRSS2ryKcV+zWIHrag=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-z1kCdl38g6b5rxAG2w6ynA=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:39 GMT"
+ "Thu, 16 Jul 2020 21:35:09 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
@@ -5321,7 +5844,7 @@
"fe-02-lb-gprd"
],
"Gitlab-Sv": [
- "web-02-sv-gprd"
+ "web-08-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -5331,9 +5854,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=da4852ae25959559e3c1019555d06cdd81592439219; expires=Sat, 18-Jul-20 00:13:39 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltTXpZVGRtWVRSbExUZ3dNemt0TkRWbE55MWhOamt5TFdReFlUQTJOelU0TVRFeU5TST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--68525123d7724f3fcd30694445be2992355db437; path=/; expires=Mon, 18 Jun 2040 00:13:39 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=46def3439d61fd005022b0fb76c3929e; path=/; expires=Thu, 18 Jun 2020 02:13:39 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d69cdbff61af819d73381dc96111ee3251594935308; expires=Sat, 15-Aug-20 21:35:08 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqYzJOekF3T1RBNUxUTXlNall0TkRGak9DMDVNbVJqTFRJMk5EQm1ZekZtWWprMk5TST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--512b72a0f6f8844d7f52388462b55c6e5850a6d0; path=/; expires=Mon, 16 Jul 2040 21:35:08 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=73c85e3b1f76ea12a664ddfaab1395a8; path=/; expires=Thu, 16 Jul 2020 23:35:09 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5354,10 +5877,10 @@
"none"
],
"X-Request-Id": [
- "1rL4MVEbHS1"
+ "LyK5k6bLYg3"
],
"X-Runtime": [
- "0.228811"
+ "0.159794"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5370,7 +5893,7 @@
}
},
{
- "ID": "972ae2e0c22b007b",
+ "ID": "1b2ef08979806b45",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/raw/v1.4.1/event.go",
@@ -5400,10 +5923,10 @@
"REVALIDATED"
],
"Cf-Ray": [
- "5a50ce41ede4e0ca-IAD"
+ "5b3ed9f17956e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f3d2f0000e0ca37369200000001"
+ "03fb268aeb0000e0caa5952200000001"
],
"Content-Disposition": [
"inline"
@@ -5415,7 +5938,7 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:39 GMT"
+ "Thu, 16 Jul 2020 21:35:09 GMT"
],
"Etag": [
"W/\"2bf29e38e2255d1083980323e622725b\""
@@ -5424,10 +5947,10 @@
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-01-lb-gprd"
+ "fe-02-lb-gprd"
],
"Gitlab-Sv": [
- "web-16-sv-gprd"
+ "web-20-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -5437,11 +5960,14 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=da4852ae25959559e3c1019555d06cdd81592439219; expires=Sat, 18-Jul-20 00:13:39 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure"
+ "__cfduid=dbd359ff647d129cdb12fde2eeeb566881594935309; expires=Sat, 15-Aug-20 21:35:09 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure"
],
"Strict-Transport-Security": [
"max-age=31536000"
],
+ "Vary": [
+ "Accept-Encoding"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
@@ -5455,10 +5981,10 @@
"none"
],
"X-Request-Id": [
- "6pH43OIstx7"
+ "gaDggEcXhv"
],
"X-Runtime": [
- "0.066779"
+ "0.057947"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5471,7 +5997,7 @@
}
},
{
- "ID": "7f6ff811d3845340",
+ "ID": "8856ae864ac27b20",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.66xue.com/daihao/logkit",
@@ -5498,10 +6024,10 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:41 GMT"
+ "Thu, 16 Jul 2020 21:35:10 GMT"
],
"Etag": [
- "W/\"6c5625b373970e2532ae1b3b09a8caa8\""
+ "W/\"daec2a335c70c4eda0a2b84bb16fd2c0\""
],
"Referrer-Policy": [
"strict-origin-when-cross-origin"
@@ -5511,7 +6037,7 @@
],
"Set-Cookie": [
"event_filter=all; path=/",
- "_gitlab_session=9cca3308777003949ec2d3d87d1da556; path=/; expires=Thu, 18 Jun 2020 02:13:41 -0000; secure; HttpOnly"
+ "_gitlab_session=b580bf87a15f737aaf668f20f758d83a; path=/; expires=Thu, 16 Jul 2020 23:35:10 -0000; secure; HttpOnly"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5526,10 +6052,10 @@
"DENY"
],
"X-Request-Id": [
- "a6iFW0wdSo1"
+ "NEEKzBNqNk4"
],
"X-Runtime": [
- "0.733460"
+ "0.280375"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5542,7 +6068,7 @@
}
},
{
- "ID": "8b3a4c53ef1c0ed9",
+ "ID": "cb60b2ebf2e84972",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.66xue.com/daihao/logkit/tree/v0.1.18",
@@ -5569,10 +6095,10 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:41 GMT"
+ "Thu, 16 Jul 2020 21:35:10 GMT"
],
"Etag": [
- "W/\"58f058718c0b863026dea3f0c55c5974\""
+ "W/\"aba1a78e3e1d2bcbeb175b21c7609c98\""
],
"Referrer-Policy": [
"strict-origin-when-cross-origin"
@@ -5581,7 +6107,7 @@
"nginx"
],
"Set-Cookie": [
- "_gitlab_session=9b741948e502c5aafcd9bad12070c069; path=/; expires=Thu, 18 Jun 2020 02:13:41 -0000; secure; HttpOnly"
+ "_gitlab_session=14e08cdcb4569f8e4efb0f01c5ed4911; path=/; expires=Thu, 16 Jul 2020 23:35:10 -0000; secure; HttpOnly"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5596,10 +6122,10 @@
"DENY"
],
"X-Request-Id": [
- "mjceJeKcym3"
+ "qG3eVJrXr38"
],
"X-Runtime": [
- "0.212661"
+ "0.209808"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5612,7 +6138,7 @@
}
},
{
- "ID": "06b0a4a0202af428",
+ "ID": "cbbe23d0b06e623d",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.66xue.com/daihao/logkit/blob/v0.1.18/color.go",
@@ -5639,10 +6165,10 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:42 GMT"
+ "Thu, 16 Jul 2020 21:35:11 GMT"
],
"Etag": [
- "W/\"5a75f33fc523f10f082671ffb527532d\""
+ "W/\"74ac2bae5aa9308b28fde0ca678a3557\""
],
"Referrer-Policy": [
"strict-origin-when-cross-origin"
@@ -5651,7 +6177,7 @@
"nginx"
],
"Set-Cookie": [
- "_gitlab_session=cf4aa5de435118c7e39b6d57744d1792; path=/; expires=Thu, 18 Jun 2020 02:13:42 -0000; secure; HttpOnly"
+ "_gitlab_session=58f9eb6a72ca3b63af86cd88bfcaf32f; path=/; expires=Thu, 16 Jul 2020 23:35:11 -0000; secure; HttpOnly"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5666,10 +6192,10 @@
"DENY"
],
"X-Request-Id": [
- "NblCDP3B1n2"
+ "omgpDglaIq2"
],
"X-Runtime": [
- "0.215052"
+ "0.204149"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5682,7 +6208,7 @@
}
},
{
- "ID": "3813b4fd35132678",
+ "ID": "e04938a012d652ad",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.66xue.com/daihao/logkit/blob/v0.1.18/color.go",
@@ -5709,10 +6235,10 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:42 GMT"
+ "Thu, 16 Jul 2020 21:35:11 GMT"
],
"Etag": [
- "W/\"630fea60a77f65461f215489ba76d316\""
+ "W/\"64bf022a8982dcf3cb8dcf5bc8e3af7a\""
],
"Referrer-Policy": [
"strict-origin-when-cross-origin"
@@ -5721,7 +6247,7 @@
"nginx"
],
"Set-Cookie": [
- "_gitlab_session=20a7590a18f047feaf30590abe7e668f; path=/; expires=Thu, 18 Jun 2020 02:13:42 -0000; secure; HttpOnly"
+ "_gitlab_session=baa0992210ce5d551875a38126e323ca; path=/; expires=Thu, 16 Jul 2020 23:35:11 -0000; secure; HttpOnly"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -5736,10 +6262,10 @@
"DENY"
],
"X-Request-Id": [
- "FE2a41479w7"
+ "DqXBLG4QNB2"
],
"X-Runtime": [
- "0.212743"
+ "0.196362"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5752,7 +6278,7 @@
}
},
{
- "ID": "ff9759e5636cdc87",
+ "ID": "6cb383085473ed01",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.66xue.com/daihao/logkit/raw/v0.1.18/color.go",
@@ -5785,7 +6311,7 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:43 GMT"
+ "Thu, 16 Jul 2020 21:35:12 GMT"
],
"Etag": [
"W/\"d07cc0c9386845045003e9910cf66df8\""
@@ -5806,10 +6332,10 @@
"DENY"
],
"X-Request-Id": [
- "GnE75i9L9A2"
+ "Nnr8lYPvzD9"
],
"X-Runtime": [
- "0.079802"
+ "0.055320"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -5822,7 +6348,7 @@
}
},
{
- "ID": "d9d34890789f497e",
+ "ID": "f9a5a462deb3d65a",
"Request": {
"Method": "HEAD",
"URL": "https://gitee.com/Billcoding/gotypes",
@@ -5849,7 +6375,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:44 GMT"
+ "Thu, 16 Jul 2020 21:35:13 GMT"
],
"Expires": [
"Sun, 1 Jan 2000 01:00:00 GMT"
@@ -5861,18 +6387,18 @@
"nginx"
],
"Set-Cookie": [
- "user_locale=; path=/; expires=Mon, 18 Jun 2040 00:13:44 -0000",
- "oschina_new_user=false; path=/; expires=Mon, 18 Jun 2040 00:13:44 -0000",
- "gitee-session-n=cGVJeVEyNStpV1hEaGhiVlBOa1dNaElnNlhOeTltMDNjcHJLVE1Lek5GeGlHV0tOUXVveU9EdHVRY2Z1bUh1T0poY3IvQU9lL0FnN0FQb0I3ektFbjJyNFpnTlNRUFhMcUtBL0pESHFSRzlJRlkwSDhPVis1ciszaENZS3V4RXhFYkhOYzNkMGswamsydTdSKzdWU243RjYxRElaUDgvMmUxTkw0TXdMVEk1TWhqMnVwRVBHaGE3WGhpR0FhdkhjLS1xaDFSQ1J0RzVGdzF0M2VuMXZRWG1RPT0%3D--a7984ff200871bb8f90b3ff2c1aef6dc3027e286; domain=.gitee.com; path=/; HttpOnly"
+ "user_locale=; path=/; expires=Mon, 16 Jul 2040 21:35:13 -0000",
+ "oschina_new_user=false; path=/; expires=Mon, 16 Jul 2040 21:35:13 -0000",
+ "gitee-session-n=dFJEYWNIRHQ5Ri9UckZxYzlRSUd0UloxaHU1N1UybURXQkwrM0xQZjF3cnJFMnRuZUwvbVJYN3ZBaEd1ZDhLZi9TU3Q5QktvWW9YdG1IV3NtVlJqTi9PSDZVRmgwNVY2cVA3NXlEekFwWUZvT0VMK25NN0ZIZ0xkeGpwOFAwRmdra0tFSXc4L0xQWGtQRzZ1b1NJUHNORGhQdWZQV1kwaVZNZmRqTUIvaFMwekhQekJOMnFwKzZNWUV5V2RrTy8yLS1BZ3BCWmF2M2dRRXZ2MXQyMXI4bk93PT0%3D--d9285458b7933c4f2754d91a72db9351e71f5c6e; domain=.gitee.com; path=/; HttpOnly"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Request-Id": [
- "e13aed10-aee1-41d5-a615-36afd6a93118"
+ "34c0379125d1c1aa8709c1fdc76f16ec"
],
"X-Runtime": [
- "0.200474"
+ "0.323446"
],
"X-Ua-Compatible": [
"chrome=1"
@@ -5885,7 +6411,7 @@
}
},
{
- "ID": "c39ce8a4baadc97f",
+ "ID": "7571cf8a797289ad",
"Request": {
"Method": "HEAD",
"URL": "https://gitee.com/Billcoding/gotypes/tree/v0.1.0",
@@ -5912,7 +6438,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:45 GMT"
+ "Thu, 16 Jul 2020 21:35:14 GMT"
],
"Expires": [
"Sun, 1 Jan 2000 01:00:00 GMT"
@@ -5924,18 +6450,18 @@
"nginx"
],
"Set-Cookie": [
- "user_locale=; path=/; expires=Mon, 18 Jun 2040 00:13:45 -0000",
- "oschina_new_user=false; path=/; expires=Mon, 18 Jun 2040 00:13:45 -0000",
- "gitee-session-n=Z1NXT2M1QVYxTm1qL1p4eVJIaGVZdXhhQUs2Z2IwWTlvMDNKUWVjRnpSQXY5UXVabVBOQ1QrVGh3MlowSTUybTZZeEdOdWs3ZmJMMy8yOU9ETUdCWFlDUmxuTXN2ejczdk9OZjk1K2s5cUViRkwwbTkvemVCRFRzZVFhdjRtRlBnQVcraGg2d1FoUng5UlhMVjhuMDA1aHY4MExqeVc4OVFCcVdzT2RGeXVRazlzaXhrckIyM0w2SmhYbE9GMHFZLS1hd0FJNEdnV3ZVSWFuUUtqTEFZNmZBPT0%3D--b1c91422875c10b6d15ff4fcf6840a6c488e90c1; domain=.gitee.com; path=/; HttpOnly"
+ "user_locale=; path=/; expires=Mon, 16 Jul 2040 21:35:14 -0000",
+ "oschina_new_user=false; path=/; expires=Mon, 16 Jul 2040 21:35:14 -0000",
+ "gitee-session-n=V0E2NE0zVHJ6M1R1dFpGcjB1UUJiSVZGWmhMRGZVbWJzU3hBc3lyd3lkVjNvV20vdjhPVlU1QXMrMmpscWF4b3Q2S2F4L2s0V2djeXNVcklBWU1hRW14MWlTWTlGekhLc1ZnK0pvQlVaYkc5OUFXR2pSQmg2anBWc29lcmRmUGhzN2RtcEhTelZacVNYbmU1ck85bFE2N3crSXhpWTJvbGJHdzE2c05iODFEUkxZU2k1TFBYUDgxaEJkbUgrRUE3LS1Oc09nL2Q5ZVUzbHI2am1Ia1dleHRRPT0%3D--de26fdd8d2d6bf0cc27d76f648a18ff298195ea5; domain=.gitee.com; path=/; HttpOnly"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Request-Id": [
- "3c2c3776-c8d1-4962-9129-2595e8fc4263"
+ "818211799891e8cb5b9716f24ec02b80"
],
"X-Runtime": [
- "0.201246"
+ "0.237289"
],
"X-Ua-Compatible": [
"chrome=1"
@@ -5948,7 +6474,7 @@
}
},
{
- "ID": "14f9107f107734e2",
+ "ID": "59cda83fb585a75f",
"Request": {
"Method": "HEAD",
"URL": "https://gitee.com/Billcoding/gotypes/blob/v0.1.0/type.go",
@@ -5975,7 +6501,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:45 GMT"
+ "Thu, 16 Jul 2020 21:35:15 GMT"
],
"Expires": [
"Sun, 1 Jan 2000 01:00:00 GMT"
@@ -5987,18 +6513,18 @@
"nginx"
],
"Set-Cookie": [
- "user_locale=; path=/; expires=Mon, 18 Jun 2040 00:13:45 -0000",
- "oschina_new_user=false; path=/; expires=Mon, 18 Jun 2040 00:13:45 -0000",
- "gitee-session-n=NnRhUDRrQ1JHODlXYS92YktNNEcwWCt5M3pMMS9qdHhnL3ovVkxqRlJ5TnZJSHcvMGNWcWp5U2czaGlLWTZyZmErMXhMOGlTRWFSVkI2TytJVC9SeU1VTnA3b09BOVJqRXgrR1FsVDlWd3BpQlYwMDNlUnZ1My91VUtxSUQ4VTluZkJINldub0wrMjA1OGU4dDlzM3pOTWtNL3R0WDB5V2NmZEs2bUdyNnBabnRmUEIyOWZDTVQ1eXJxMDRvNFRaLS0zN2srdHdvalpxMjJCb3k2b2NNUkpBPT0%3D--c0f1d1092e70fc465f902ff4f4718607822928a5; domain=.gitee.com; path=/; HttpOnly"
+ "user_locale=; path=/; expires=Mon, 16 Jul 2040 21:35:14 -0000",
+ "oschina_new_user=false; path=/; expires=Mon, 16 Jul 2040 21:35:14 -0000",
+ "gitee-session-n=dlpwcENPQ0pwMG5TQ2JTblhvb0hXR0E0dDM2cXQ5eUF0dEJGc1J1dHIxbzQ0SzlTVzFCSHBvbTNteVFwUkJFWkpqMy9CQkpyaFJCMWMxbGtrdkJLczc2cjE2b0NLbFVpejdqTzdNTUNSUkJWSjNrQklGTFlUVlEwZkdBL3RkVEZVWGtMVHdsUXdoT0R5RlErQVg4cTZvcXF4U0RLLzRuOWF4cmtjaWhCa1ZDUi9lZEltZFJrbnl0bXFpNGk4TDMxLS16TVEwZTRBUWlSMWxPY0RUYUNqdXlnPT0%3D--d75dabdb1587fb9164c81d9070df7f4b7bbdc363; domain=.gitee.com; path=/; HttpOnly"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Request-Id": [
- "7f4ef764-a9d9-44ac-9fdb-d5080547d633"
+ "83e0f47b4b40c1ff61a1d3124da89d2c"
],
"X-Runtime": [
- "0.259395"
+ "0.201111"
],
"X-Ua-Compatible": [
"chrome=1"
@@ -6011,7 +6537,7 @@
}
},
{
- "ID": "4b83ae56da4a9a94",
+ "ID": "7139e0f5d4f9e162",
"Request": {
"Method": "HEAD",
"URL": "https://gitee.com/Billcoding/gotypes/blob/v0.1.0/type.go",
@@ -6038,7 +6564,7 @@
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:46 GMT"
+ "Thu, 16 Jul 2020 21:35:15 GMT"
],
"Expires": [
"Sun, 1 Jan 2000 01:00:00 GMT"
@@ -6050,18 +6576,18 @@
"nginx"
],
"Set-Cookie": [
- "user_locale=; path=/; expires=Mon, 18 Jun 2040 00:13:46 -0000",
- "oschina_new_user=false; path=/; expires=Mon, 18 Jun 2040 00:13:46 -0000",
- "gitee-session-n=aUUwQ0c2anBDcGFFN3ZuaU1scW81cWJuMjk0R3N1WnF5WWF4b0lwak9HZUtTcTBkNUlCbC9KWGtsaUJGRDBBaHhXQjFoTkQza2hJdy9vc3F2aUdtVTRJMlNTQ1dDQ0NPMktkWGtDZkdjQ1RFaGFCb2NYeU85TFhYaThwQmEwTkRob0JvMDVEd1BTNlJYbFJEaXNaT0pyeXh6U1MzWVV5bFA0eWlySnFDL0lUM2ZTNExsRnd0cFZ5NDEvMGxaTzFKLS1JZXJVbGd2MXBsN093TkVHREpRSmpnPT0%3D--38d600c3fedb31bb5b826713fa616010d7268f6b; domain=.gitee.com; path=/; HttpOnly"
+ "user_locale=; path=/; expires=Mon, 16 Jul 2040 21:35:15 -0000",
+ "oschina_new_user=false; path=/; expires=Mon, 16 Jul 2040 21:35:15 -0000",
+ "gitee-session-n=NG9yNzNrZDJBQVRWU2kzbytyV0VqbFNEQXEyYzJTVmg4Y2Q2NURNQ0RVV0pxYkNWQW11ZmdxYXBTdXdUbFoxZUgyY0Zva1JmdldxYW9uRHNGNFNRZC9yT04xa3JlditNL3VvZVhWaEY1Wm1pQS8yazZQdERQMktRZFo1REIwVGgyWUxPbGxuSEVHdHFSOVZrTXBXY2VxNkdMenVLZ2lrOGxBMnRCZnNpN1R4TlV4d2JWM2ZUY2twUkg3SGViYUtpLS1wRmJPVWFDRk1LWjQ0VEV5ZnExN2V3PT0%3D--55a448a03fb4629882a254d8d23929e47ab31abb; domain=.gitee.com; path=/; HttpOnly"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Request-Id": [
- "82f13028-7ffc-4ed0-b63c-f5a7818b09d9"
+ "ddaa4dc34b11267b51e07860efd20d37"
],
"X-Runtime": [
- "0.195842"
+ "0.238676"
],
"X-Ua-Compatible": [
"chrome=1"
@@ -6074,7 +6600,7 @@
}
},
{
- "ID": "8ac3258b2c4b9afb",
+ "ID": "9451f7b1339e8efd",
"Request": {
"Method": "HEAD",
"URL": "https://gitee.com/Billcoding/gotypes/raw/v0.1.0/type.go",
@@ -6107,7 +6633,7 @@
"text/plain;charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:46 GMT"
+ "Thu, 16 Jul 2020 21:35:16 GMT"
],
"Etag": [
"\"c0412910172d6f894c703565f0d4369e\""
@@ -6122,17 +6648,17 @@
"nginx"
],
"Set-Cookie": [
- "oschina_new_user=false; path=/; expires=Mon, 18 Jun 2040 00:13:46 -0000",
- "gitee-session-n=WktvYmI2cnRBRncxS2I0Y0didkZ6dDRZTGloS2czRk1LMFJzMHU4RElvSm5JTjZSclZxZ1phTjlVV1YxQUxkQzdTdUVQVW54UHlFaFhpS0VTUXFwclE9PS0tNUt1eEdrRHhRbXBlY2VraCs3RUFGUT09--d8b2a1c7d09bdfc0ce873ab3b871a0adb2bbd3de; domain=.gitee.com; path=/; HttpOnly"
+ "oschina_new_user=false; path=/; expires=Mon, 16 Jul 2040 21:35:15 -0000",
+ "gitee-session-n=VFFlalNXUlpWQUFtMVdHcUlNTTQ5TzdGZUhYRW1aak5NUmQzK1grOGMzNjA5ZG13eUFZcHZFTW1nM05tdnhVZzM5d0tNZ1NxbVk2ejF3UXRBWUFVdmc9PS0taUNDK3R1MGlHWDBrMk9CcFVpSVovZz09--35f53c618c24ccb01bfc103619ea92f982c8eb40; domain=.gitee.com; path=/; HttpOnly"
],
"X-Content-Type-Options": [
"nosniff"
],
"X-Request-Id": [
- "9db45f14-2052-4b6d-8cfd-91f149a71549"
+ "83b14827ad090eaead22a4ad25c7e70d"
],
"X-Runtime": [
- "0.041180"
+ "0.039730"
],
"X-Ua-Compatible": [
"chrome=1"
@@ -6145,7 +6671,7 @@
}
},
{
- "ID": "d82a5f7450a24e93",
+ "ID": "291afaf4539f418d",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/jrick/wsrpc/blob/v2.1.1/v2/go.mod",
@@ -6169,13 +6695,13 @@
"no-cache"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:46 GMT"
+ "Thu, 16 Jul 2020 21:35:16 GMT"
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -6184,9 +6710,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Ntgmre7iB%2FGnLgTm1PYVU%2FWw8J%2BkLk4T7JY4BLV0IhXDm%2FY7xR9DH3n9IUt6Dk1sUFQbioKhBwpI2I0tRJ2bqoKA0S6bnc8aRSlTI5eKtntc6yFwY5CsT7hfYAfVbfGLsyXgeWAmWvCwvzy7kwT0YmyUl4331WVtE%2BtZf6jZAocOeOH3aBuq6yvDzCCR9DpZmHU125YOjrSodSBfY6JrT%2B7kO61rPyCYdokZ7b6nYo84Yz1TeBbPiTIr7br0DDpGwvK8Qtkp2MntHGSNDHqRZw%3D%3D--ilJv0wsIvfVYpfZ6--vjSce3VPKm%2BN%2B9v3dgxwlQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1070370332.1592439226; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:46 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:46 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=dhBX%2BKadVjQAqR7wK7QM4obuHaBi0m0CvUGtCqN%2FOz9IFwBDOQeVFYOewWasOPuFLb5O5PzG%2FLUjfCzZxiPFrBGy9%2BE2UqS37WOPxn1b0LLG1K9eKr8svFDVgzwkzatZNSrpkIVe25kmLG4E6N41xn3U%2BsmZDOdWA%2FeUIujl3B7SY0pIRucQz9gIJUhB8WMuYzQQ0wOi4Pmbktk%2FJDXxMTumvaqoXR5JWCXDRNmouIguTJ3lF2PgGJgWJLuaING2e5UHrBTNX1TQWQKT9OMaEA%3D%3D--%2BObGAsH%2FSwn8aTu%2B--nSqPStzz2r49wLeSGkgr6Q%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.771427812.1594935316; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"404 Not Found"
@@ -6204,7 +6730,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EEF2:1D9B3C8:5EEAB1B0"
+ "7960:5415:97C00A:E296C5:5F10C80A"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6214,7 +6740,7 @@
}
},
{
- "ID": "d5e81e59805aedf1",
+ "ID": "74b7e47039d25179",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/jrick/wsrpc",
@@ -6241,16 +6767,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:47 GMT"
+ "Thu, 16 Jul 2020 21:35:16 GMT"
],
"Etag": [
- "W/\"83e4cfcf0180b49e0d140d7831aedee6\""
+ "W/\"72e1e87dae49d0fc56451e6918a36794\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -6259,9 +6785,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=yd8MwxkRcOBQX%2Fxb36dNQ0a7zko9U2TqEN8WM7JA0HmS6aNy2tnWCsw3wcJBCyRp8DBJfMndSb3%2Fx9W3fEPTBrCEJ%2FSTT7YHSIqVfLyy0Jautcb5G6TdX7JGhiqBACpegsYK%2B6QI7uSX8Ufc3uLUydIHTyIryhSpWMdESIsqxUW%2F7cGQZzC80mFGfKfFlcdHayH%2F7N59AyyXYFLGCCZrfdQ414TyQRN%2Fx6uqwO6SQLSVvifKxQWgbSOHfSeefXZuSPJ3gaAPIHdDvM2ktTAUzA%3D%3D--O38goTg%2Fil%2B1U6wY--DgdxffxkslYt%2FG9VrNeeUg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1066255979.1592439226; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:46 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:46 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=6Lt%2FtofPV8A3joYcmEpgTbBFXI%2BebcDCENeTxBePPLybF8Cd%2FMexZ2QZYsJXnOkDnpEFNpmGK7e2bzk5yQnzXbPSjI9RebDiqz%2FXvCy0Fh7J%2Fmq09UsA8WRHJF2FiwJ4A7D9PVLAq%2FtVq60Ais9%2Bo18jtln%2Bly3txFar2WSh0yHbzSXEc2OIy0Bis6%2Bp9qtH%2BNT1Cibp0D%2BApPRZsHd1abIOIGV0ymlhRl8BIDRd73P7Y29ZHcCDUhTUJysBvjchdjUU02f%2B6OeqOHC4GtvT4Q%3D%3D--GL%2FSxpKDfITB7dbZ--IlpFpq%2BSliLw%2BI9YOE02%2BA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1565921981.1594935316; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -6279,7 +6805,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EEF4:1D9B57C:5EEAB1BA"
+ "7960:5415:97C01E:E29DB3:5F10C814"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6289,7 +6815,7 @@
}
},
{
- "ID": "1e1b40b95eada3cc",
+ "ID": "68c4e7adba5b1202",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/jrick/wsrpc/tree/v2.1.1",
@@ -6316,16 +6842,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:47 GMT"
+ "Thu, 16 Jul 2020 21:35:16 GMT"
],
"Etag": [
- "W/\"d1d6d42b78369cdd74c369a803508378\""
+ "W/\"1bacdb5d44ca63331eb882652817ad33\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -6334,9 +6860,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Ug%2FZFMoyezOvL5ySYzir2H33oPCljfuWoquV7ALJipSlwMkCIMswS3x38tbzBIQdwJ9vh3AY6cMfDPDNcNokammZUaeiWEEjF119qraNbjkwADv6G4Nz9%2BqpXQfbZh2VhQUlvqdvMd8VWBcmJCuz%2F1dHrF9sYOQvuXoOD2afGMhf6PjoLD8zHCYNBcWtThrG5YrLF8Lv27O%2F2g00kknwPdNwToUcLivpxvIOpOcuVyhYqSyTn2UlTGNuGt%2BXciUG6tuXzKL0WUrOUN6mgaT9dQ%3D%3D--W6%2BSqBbsjilHVnsF--gLcbJtf4fZguT4sIZYxl9g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.2127689417.1592439227; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=5tmeqJUqPuz4SJDjBnihZ2yPbqfg1GFITmTmJkUKThrC7Fhymh9vCjkVs%2BYyLrhkUwWVDv3kuDNrkKgKrSOoytLWhtONiCcn78Cj9vw7ncCyd4o9UZL9bMdPGPDYa2ey8dMRUSAwS1yP5xuniZXdJGhkgtuR3piQeSmUkYaJ2kTTArZCVIFsEkJIMS9K5qzrcbdaAJJyXf380yBvfHWpF5b8%2BQeUaUkSfUJeKIOXtmXavzkNZDdXsuOc4A9ppvayeqRgTPtSpbl7mK%2BAk0Cm4g%3D%3D--OceCb2FUf6ebpOB%2F--sxB7bdpCVJ%2FavNWBdHuqJw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.702705151.1594935316; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:16 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -6354,7 +6880,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EEFC:1D9B588:5EEAB1BB"
+ "7960:5415:97C052:E29E08:5F10C814"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6364,7 +6890,7 @@
}
},
{
- "ID": "d159274f5af58257",
+ "ID": "5265e865a662e034",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/jrick/wsrpc/blob/v2.1.1/rpc.go",
@@ -6391,16 +6917,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:47 GMT"
+ "Thu, 16 Jul 2020 21:35:17 GMT"
],
"Etag": [
- "W/\"e0a65196231fec877e99bbfb8657aaed\""
+ "W/\"e3510a2ddf919120e1348e0a8ac4b3c8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -6409,9 +6935,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Io1w5f4fxDvgiQZdz%2Bp%2FGWhg9NUvIPmPDyroAlbaWzcY%2F4cCyLW7eN5j58qSJBJGt5pzqpFne8Cjgka4nvYsmVJJ8Cr3o3EJlPSLVDKd2hU2SXEKGADiQk59F4s3uPfMD2cCmbb0z%2BS9JabCignidS%2FKGg%2Bv5%2Bbc3ifCEh6A8NQ5XnYVbGmPgXICnRVKh%2FIPj%2Fuq6UGTnGrXedi1kG%2F%2B0ned8BfUMG18F4wC%2BrtpRj99C6mqSPF4lpHPrp3OxXJTPOMmiiyD9xv%2FvkCq6fkpNw%3D%3D--y%2FRpf4wMH5W1Fswd--tqNEMmplmhe%2BYJzX3JNO3A%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1910350055.1592439227; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=lh8r9WFHgk0rkAr8LWwa9xR0FJ3FIlNabvvkiGHwZRav%2BhIsMf7LBwWvb2Ou9ZvA7OuzR6zck%2FAhrBYWmSz7wpa%2FB5PIz9KfZLledpvuprqu1beLn6eTWaEf9WtMcZe4aLQH39dfKVn8P09B2r%2BUDyaU5Y2pMe5IbQdL6Xymgi4L40JZZVr3vSMVOSn%2FBu65IF9peVqA8nNsgjO4YXjixBvb%2Fyabzl9ie31UAx4k91QIdHiEzloeG9bP9suAKX6QhVlhEAyfl2msMkE0DPHeyg%3D%3D--%2FT44iqzZ8bGq9soY--9tqVxFFEQPeSfLlXJXEnKw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.233231720.1594935317; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:17 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:17 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -6429,7 +6955,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF02:1D9B590:5EEAB1BB"
+ "7960:5415:97C07D:E29E45:5F10C814"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6439,7 +6965,7 @@
}
},
{
- "ID": "c8d6b771d10dffe9",
+ "ID": "93f224386d34a1c0",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/jrick/wsrpc/blob/v2.1.1/rpc.go",
@@ -6466,16 +6992,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:47 GMT"
+ "Thu, 16 Jul 2020 21:35:17 GMT"
],
"Etag": [
- "W/\"e0a65196231fec877e99bbfb8657aaed\""
+ "W/\"e3510a2ddf919120e1348e0a8ac4b3c8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -6484,9 +7010,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Os8EhyBf2m%2FyCCvG2BrnPLzRnMwcgnrMxee4vcl4Nsec2RuvWYl5G3ycCrfPI28OdGOlnpNlw%2FD5bO4V%2BA8ZJS8BD39WgCwoX%2BT1zrNj%2BfuOhwf7DwbenH4FrneexKz87T28MEcWueaRd2Kz9sCy%2FiTDEJXbKxb4H2gP5Mf6A8t1gJwsSaz1j5rZOabz7ZWHcZP%2ByRMdHjZ7JxqH%2FK2yWb7GvcyyoKaDyX8D2%2Fygua53bP%2B4Lsa0W1yDO06SQc%2BSgfSfIWxEadt2rJmL7TqhtQ%3D%3D--ZwahtMDDIEqsNbtz--gCn%2B9y1NAv5ijtsqugWELA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1562455047.1592439227; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:47 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=AuDTEY0OWIY8mBX9FXPv1qpbi1K4pyNToHJh3I34NSNBZLk%2BKTSmIocZ5nMzzLuyzc%2Fhas%2BudkN5FPfphaZYfaRpuo7GM7SOB54WdHCqMKPRC4JbMm0uOuRfSvsnacxWD7tFPp111H74lUuNWibtTjBl%2F0jH4pMMXYxwAaXB6nfsGic%2BLHG%2FiM9oAo6ivYiBB3d7nIRmpD7Xg5vFY%2FEjOeugNmPBgLfzIc0Pt5jP0pI7gpRmwdKbDMyjxuv%2B1%2B%2BvZm2YhRqBDiNQNRwboXCMWg%3D%3D--oignAU8Yc%2Fi1HNQY--Knl6kIZ%2BVdNAxRGGR3jDtw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.556218756.1594935317; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:17 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:17 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -6504,7 +7030,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF06:1D9B59A:5EEAB1BB"
+ "7960:5415:97C0A0:E29E77:5F10C815"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "2c02f4659820ac33",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/jrick/wsrpc/raw/v2.1.1/rpc.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "125"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:17 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/jrick/wsrpc/v2.1.1/rpc.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97C0A5:E29E7B:5F10C815"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6514,11 +7113,14 @@
}
},
{
- "ID": "524f0cbf5091fd06",
+ "ID": "bc60623999e6692f",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/jrick/wsrpc/v2.1.1/rpc.go",
"Header": {
+ "Referer": [
+ "https://github.com/jrick/wsrpc/raw/v2.1.1/rpc.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -6553,13 +7155,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:47 GMT"
+ "Thu, 16 Jul 2020 21:35:17 GMT"
],
"Etag": [
"\"39b40991ca39cdc092c41fd7cb0f0d8932d5babb6af990005cfdffa75731a7eb\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:47 GMT"
+ "Thu, 16 Jul 2020 21:40:17 GMT"
],
"Source-Age": [
"0"
@@ -6584,19 +7186,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "910afd2d51aa914a3c500b8a361cd9814b63b7e6"
+ "3dda9b4b6b3dffcdd9931537c730c6383325bc9b"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "5688:4FBD:272D87:30476F:5EEAB1BB"
+ "F1B6:74CE:B1B3F:D493C:5F10C814"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439228.868940,VS0,VE97"
+ "S1594935317.487382,VS0,VE150"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -6606,7 +7208,7 @@
}
},
{
- "ID": "dd23a86b6e22bbb0",
+ "ID": "a42750c2e417399a",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/blob/v2.0.0-rc.2/v2/go.mod",
@@ -6633,28 +7235,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce76e80ee0ca-IAD"
+ "5b3eda275f60e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f5e4c0000e0ca37109200000001"
+ "03fb26ac950000e0caa5b53200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-Qyp9mYNX9ODxfIvbeir7hQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-Ac9uFq4/YeIzF315UMQOAQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:48 GMT"
+ "Thu, 16 Jul 2020 21:35:17 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-07-lb-gprd"
+ "fe-12-lb-gprd"
],
"Gitlab-Sv": [
- "web-13-sv-gprd"
+ "web-09-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -6664,9 +7266,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d9422b0e6da87bf813593406fb2267fa71592439227; expires=Sat, 18-Jul-20 00:13:47 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqYzNZMk16T0dVekxXUTBNekF0TkdReFlpMDVNRGt5TFdKaE9EWTBOVFV6Tm1Vd015ST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--9f186710f45374fb3aedb3e4c9fd72b06457bc50; path=/; expires=Mon, 18 Jun 2040 00:13:48 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=c655ff2ba7b662c98f648c1e335076dc; path=/; expires=Thu, 18 Jun 2020 02:13:48 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=dfdf1d112789d4471b7232a39f0e966a21594935317; expires=Sat, 15-Aug-20 21:35:17 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqSmtaVEZpWlRnMUxURTJOemt0TkdGa1l5MDRPVFkxTFRRd1pHSXdPR0ZsTXpnME5pST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--9d9d8bf7a8a24dd9ed11cdb61602ea1633c39839; path=/; expires=Mon, 16 Jul 2040 21:35:17 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=765599ec6c99812ba8386200f2ffe7bc; path=/; expires=Thu, 16 Jul 2020 23:35:17 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -6687,10 +7289,10 @@
"none"
],
"X-Request-Id": [
- "NNTUSEI2pn"
+ "Z4gdxqrc2y3"
],
"X-Runtime": [
- "0.169460"
+ "0.147838"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -6703,7 +7305,7 @@
}
},
{
- "ID": "0be2d0597f3192d2",
+ "ID": "9b820070944be488",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita",
@@ -6730,28 +7332,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce785a1ce0ca-IAD"
+ "5b3eda28b9bce0ca-IAD"
],
"Cf-Request-Id": [
- "03665f5f370000e0ca37112200000001"
+ "03fb26ad750000e0caa5b5e200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-pJIau9ae8UxdJF4xIpuSAQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-dD6jMWdxgc47YN+Vg9x/vQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:48 GMT"
+ "Thu, 16 Jul 2020 21:35:18 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-11-lb-gprd"
+ "fe-02-lb-gprd"
],
"Gitlab-Sv": [
- "web-05-sv-gprd"
+ "web-08-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -6761,10 +7363,10 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d88075ba6a414a6721b5f59f7fe4679961592439228; expires=Sat, 18-Jul-20 00:13:48 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltWTBNVGhrTUdZeExUQTFOREV0TkRGbE9DMWlaR1poTFRVMU5HVm1aalU0WlRnNE5TST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--0d0a2ff376f1d021ac5ffe2c660e75b637310918; path=/; expires=Mon, 18 Jun 2040 00:13:48 -0000; secure; HttpOnly; SameSite=None",
+ "__cfduid=dfdf1d112789d4471b7232a39f0e966a21594935317; expires=Sat, 15-Aug-20 21:35:17 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqZG1ORGN4TnpZNExUSmpPREF0TkdNME55MWlOVGhtTFRVMU9UazJObVZsTWpBNE55ST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--74f2791fddbd3df70088a1d529f1745cd1a31937; path=/; expires=Mon, 16 Jul 2040 21:35:17 -0000; secure; HttpOnly; SameSite=None",
"event_filter=all; path=/; Secure; SameSite=None",
- "_gitlab_session=d90454b49b6465088f7cae57d2d6f4e4; path=/; expires=Thu, 18 Jun 2020 02:13:48 -0000; secure; HttpOnly; SameSite=None"
+ "_gitlab_session=acc0fd727aad76d5148f13e2e0c6d56e; path=/; expires=Thu, 16 Jul 2020 23:35:18 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -6785,10 +7387,10 @@
"none"
],
"X-Request-Id": [
- "At5HadQVka1"
+ "GKgtHm5YeZ6"
],
"X-Runtime": [
- "0.279753"
+ "0.284760"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -6801,7 +7403,7 @@
}
},
{
- "ID": "5df5c82e1927e83b",
+ "ID": "7654ad4a7b563bbd",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/tree/v2.0.0-rc.2/v2",
@@ -6828,19 +7430,19 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce7a9d5fe0ca-IAD"
+ "5b3eda2afe05e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f609d0000e0ca37123200000001"
+ "03fb26aedd0000e0caa5b6d200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-8DuJ0hU96OLWDwHqtU2IVg=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-ePMp4pK6/e7qhrcn80gQ/A=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:48 GMT"
+ "Thu, 16 Jul 2020 21:35:18 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
@@ -6849,7 +7451,7 @@
"fe-08-lb-gprd"
],
"Gitlab-Sv": [
- "web-17-sv-gprd"
+ "web-14-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -6859,9 +7461,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d88075ba6a414a6721b5f59f7fe4679961592439228; expires=Sat, 18-Jul-20 00:13:48 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6Iklqa3pPV0U0TXpjM0xUTmtaRGd0TkRjME55MWlPV1UxTFRaa09URm1ZelF5Wldaa09DST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--79c89a0b2693c620681fdc279d3b02cfad3479d6; path=/; expires=Mon, 18 Jun 2040 00:13:48 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=5960f06172891c566e5e175dfe222eaf; path=/; expires=Thu, 18 Jun 2020 02:13:48 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d98e4969bf5f726b68cdd3e8990efeb981594935318; expires=Sat, 15-Aug-20 21:35:18 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltWXhZek16TkRNekxUQTRZVGd0TkRVNFpTMDVNVEV5TFRobU1EYzBZV1V3TldVeE5pST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--ef595d7af1107879e513787b6df7e71aa6584f60; path=/; expires=Mon, 16 Jul 2040 21:35:18 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=8371818c09884f2a7dcb8e16b927c2f2; path=/; expires=Thu, 16 Jul 2020 23:35:18 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -6882,10 +7484,10 @@
"none"
],
"X-Request-Id": [
- "CdNB0dsGi8"
+ "P68zV92gC31"
],
"X-Runtime": [
- "0.116534"
+ "0.119761"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -6898,7 +7500,7 @@
}
},
{
- "ID": "e17a59a76ae75de4",
+ "ID": "d7e020cff2837c5f",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/blob/v2.0.0-rc.2/v2/event.go",
@@ -6925,28 +7527,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce7bbf04e0ca-IAD"
+ "5b3eda2c2849e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f61540000e0ca3712e200000001"
+ "03fb26af9b0000e0caa5b7d200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-7NtT1dShOLcDtUPpdfydpw=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-uIuqEqNCJQb61vxzwHdnjg=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:48 GMT"
+ "Thu, 16 Jul 2020 21:35:18 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-12-lb-gprd"
+ "fe-05-lb-gprd"
],
"Gitlab-Sv": [
- "web-18-sv-gprd"
+ "web-08-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -6956,9 +7558,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d88075ba6a414a6721b5f59f7fe4679961592439228; expires=Sat, 18-Jul-20 00:13:48 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqVXdZbVZsWkRObExUSTBOR1V0TkROaE5pMWhaVEE0TFdVeU5tSTFZakpsWldVMVpTST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--8ff572012139b69ea84514f2a3f3861ea7d01fb3; path=/; expires=Mon, 18 Jun 2040 00:13:48 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=776269a0778509db52109ddbf90240f3; path=/; expires=Thu, 18 Jun 2020 02:13:48 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d98e4969bf5f726b68cdd3e8990efeb981594935318; expires=Sat, 15-Aug-20 21:35:18 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltTmtPV0ZoT0RKaUxUVXpNell0TkRrNE1TMWhOR0UyTFRRMFpUSXhNRFF3TmpNeE9TST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--76ee57dd79ffa1b2bba279b55745bbe0a81bd091; path=/; expires=Mon, 16 Jul 2040 21:35:18 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=23c654ec9147990e10171345a6021d3b; path=/; expires=Thu, 16 Jul 2020 23:35:18 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -6979,10 +7581,10 @@
"none"
],
"X-Request-Id": [
- "3dqrKhBpwF9"
+ "6LI49WA7Td7"
],
"X-Runtime": [
- "0.152833"
+ "0.155936"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -6995,7 +7597,7 @@
}
},
{
- "ID": "6d62942ba7f42c62",
+ "ID": "d2c417dc5bc7e912",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/blob/v2.0.0-rc.2/v2/event.go",
@@ -7022,28 +7624,28 @@
"DYNAMIC"
],
"Cf-Ray": [
- "5a50ce7d18c0e0ca-IAD"
+ "5b3eda2d9a9ce0ca-IAD"
],
"Cf-Request-Id": [
- "03665f622e0000e0ca37135200000001"
+ "03fb26b0810000e0caa5b8d200000001"
],
"Content-Security-Policy": [
- "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-YRUhrxHyw8hEkJLXLOmdIQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
+ "connect-src 'self' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net wss://gitlab.com https://sentry.gitlab.net https://customers.gitlab.com https://snowplow.trx.gitlab.net https://sourcegraph.com https://ec2.ap-east-1.amazonaws.com https://ec2.ap-northeast-1.amazonaws.com https://ec2.ap-northeast-2.amazonaws.com https://ec2.ap-northeast-3.amazonaws.com https://ec2.ap-south-1.amazonaws.com https://ec2.ap-southeast-1.amazonaws.com https://ec2.ap-southeast-2.amazonaws.com https://ec2.ca-central-1.amazonaws.com https://ec2.eu-central-1.amazonaws.com https://ec2.eu-north-1.amazonaws.com https://ec2.eu-west-1.amazonaws.com https://ec2.eu-west-2.amazonaws.com https://ec2.eu-west-3.amazonaws.com https://ec2.me-south-1.amazonaws.com https://ec2.sa-east-1.amazonaws.com https://ec2.us-east-1.amazonaws.com https://ec2.us-east-2.amazonaws.com https://ec2.us-west-1.amazonaws.com https://ec2.us-west-2.amazonaws.com https://iam.amazonaws.com; frame-ancestors 'self'; frame-src 'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-cloudresourcemanager.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://*.codesandbox.io; img-src * data: blob:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://www.recaptcha.net/ https://apis.google.com 'nonce-YKQhhnrD1VkK3kLJ/DRRmQ=='; style-src 'self' 'unsafe-inline' https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net; worker-src https://assets.gitlab-static.net https://gl-canary.freetls.fastly.net https://gitlab.com blob:"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:49 GMT"
+ "Thu, 16 Jul 2020 21:35:18 GMT"
],
"Expect-Ct": [
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-06-lb-gprd"
+ "fe-10-lb-gprd"
],
"Gitlab-Sv": [
- "web-12-sv-gprd"
+ "web-22-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -7053,9 +7655,9 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d88075ba6a414a6721b5f59f7fe4679961592439228; expires=Sat, 18-Jul-20 00:13:48 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
- "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IklqQTROMkprTjJaaExUSXpZek10TkdReU9TMDVNek5rTFdZM016STRNRFJsTnpNeE1DST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--978132e7f0b9646a8cd237dd2fb75afde485f1d7; path=/; expires=Mon, 18 Jun 2040 00:13:49 -0000; secure; HttpOnly; SameSite=None",
- "_gitlab_session=7fbd221b7762a2a17167f1a84687aa7b; path=/; expires=Thu, 18 Jun 2020 02:13:49 -0000; secure; HttpOnly; SameSite=None"
+ "__cfduid=d98e4969bf5f726b68cdd3e8990efeb981594935318; expires=Sat, 15-Aug-20 21:35:18 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure",
+ "experimentation_subject_id=eyJfcmFpbHMiOnsibWVzc2FnZSI6IkltUXhaRGhtWVdNMUxUUm1Zell0TkRJME9TMDRORFF4TFRWa09XWTBPVEUxTkRNNVlTST0iLCJleHAiOm51bGwsInB1ciI6ImNvb2tpZS5leHBlcmltZW50YXRpb25fc3ViamVjdF9pZCJ9fQ%3D%3D--249df98a34afaef29b601218e2bfab2a57187cbe; path=/; expires=Mon, 16 Jul 2040 21:35:18 -0000; secure; HttpOnly; SameSite=None",
+ "_gitlab_session=9be993139af37f7f128a6e35341ede06; path=/; expires=Thu, 16 Jul 2020 23:35:18 -0000; secure; HttpOnly; SameSite=None"
],
"Strict-Transport-Security": [
"max-age=31536000"
@@ -7076,10 +7678,10 @@
"none"
],
"X-Request-Id": [
- "y7Rw6IxzSE4"
+ "RazOL7wRu2a"
],
"X-Runtime": [
- "0.188144"
+ "0.144430"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -7092,7 +7694,7 @@
}
},
{
- "ID": "5fe7d52e993292da",
+ "ID": "a045671008b89195",
"Request": {
"Method": "HEAD",
"URL": "https://gitlab.com/akita/akita/raw/v2.0.0-rc.2/v2/event.go",
@@ -7122,10 +7724,10 @@
"REVALIDATED"
],
"Cf-Ray": [
- "5a50ce7ebb44e0ca-IAD"
+ "5b3eda2efd03e0ca-IAD"
],
"Cf-Request-Id": [
- "03665f632e0000e0ca3713f200000001"
+ "03fb26b15d0000e0caa5b97200000001"
],
"Content-Disposition": [
"inline"
@@ -7137,7 +7739,7 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:49 GMT"
+ "Thu, 16 Jul 2020 21:35:18 GMT"
],
"Etag": [
"W/\"f0a10420964be93088c3f3909c14a926\""
@@ -7146,10 +7748,10 @@
"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""
],
"Gitlab-Lb": [
- "fe-03-lb-gprd"
+ "fe-07-lb-gprd"
],
"Gitlab-Sv": [
- "web-18-sv-gprd"
+ "web-19-sv-gprd"
],
"Referrer-Policy": [
"strict-origin-when-cross-origin",
@@ -7159,11 +7761,14 @@
"cloudflare"
],
"Set-Cookie": [
- "__cfduid=d6c11df47e1e4edfb8d1ee672fbf4e20b1592439229; expires=Sat, 18-Jul-20 00:13:49 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure"
+ "__cfduid=d98e4969bf5f726b68cdd3e8990efeb981594935318; expires=Sat, 15-Aug-20 21:35:18 GMT; path=/; domain=.gitlab.com; HttpOnly; SameSite=Lax; Secure"
],
"Strict-Transport-Security": [
"max-age=31536000"
],
+ "Vary": [
+ "Accept-Encoding"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
@@ -7177,10 +7782,10 @@
"none"
],
"X-Request-Id": [
- "SlgcOALglma"
+ "zdoJcO0ANta"
],
"X-Runtime": [
- "0.058962"
+ "0.059528"
],
"X-Ua-Compatible": [
"IE=edge"
@@ -7193,7 +7798,7 @@
}
},
{
- "ID": "16a8d89ff61ae671",
+ "ID": "36b9be99aec1f38f",
"Request": {
"Method": "GET",
"URL": "https://gopkg.in/yaml.v2?go-get=1",
@@ -7226,7 +7831,7 @@
"text/html"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:50 GMT"
+ "Thu, 16 Jul 2020 21:35:19 GMT"
],
"Server": [
"Apache/2.4.29 (Ubuntu)"
@@ -7239,7 +7844,7 @@
}
},
{
- "ID": "f11a7e5a3c0dabcc",
+ "ID": "3715a80bb2c22a2c",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/go-yaml/yaml",
@@ -7266,16 +7871,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:50 GMT"
+ "Thu, 16 Jul 2020 21:35:20 GMT"
],
"Etag": [
- "W/\"0e8f9160f09a2da833b888e760d05651\""
+ "W/\"50059d471d87eadeb033a4810f233fcd\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7284,9 +7889,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=USn8T6ES2s1qNqXE9yD%2BrtF0cuP6htfoINCxYmT5CUf1Ef39BzhDWIPfXyBAFlzVqs90gQX9X08tsY2JEk7c5aF6GpEo3fxp71JgUqXl7RqYzPMs7I4ZAWEZc3diiKI0%2BkkuqzJaxK1E62293Om0Uz6%2F5vKKyHnYWDkIOgLNKPEXcjSrggA5AsSHT2YagFs3dO0gXVj4NGVPEDbluuyXe4e04tM3IRqJIb2dreh3KaQkr0JBqdPVAmCYxydh%2BVTAhDglS1rIXOqqL%2B%2BZNVjgdg%3D%3D--sR0d2Y6e7mUjD%2Fsn--aCkb5lUtr3WpvDzD5%2FkjkQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1368687492.1592439230; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=6%2FHRVVHhY4byBmKYHc5E8GqAo1c8oagK1A48iBwcLO4YicfMboLe4sRUEIGuOr6XKi9CmDjmL7xhBJL7UFxP%2B%2FyARf0a32d96nzr4LMiL6XxwODLbGmM1TyNskAJwuhoDPx4tcb%2BPPqf7VnRTDp%2BvM0%2FufC1FjoYcHhrEQUuWfItEjtU0eIVWGtxlAQ7wp9UdXSyPjDYa9Fu%2BiEv%2FeaOwPZPUnMj1KZRN5dOKd5GYIVTjR3900VePGnyn3lCIy3ekRRGKujyqTVqop58s5OV2g%3D%3D--mu6bRur8Y%2FnEvipl--87W9mauZDUaDJTtfmlmYsg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1771939705.1594935319; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:19 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:19 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7304,7 +7909,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF42:1D9B59B:5EEAB1BB"
+ "7960:5415:97C1D3:E29E91:5F10C815"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7314,7 +7919,7 @@
}
},
{
- "ID": "e7928e6b9a5cc641",
+ "ID": "3cfaccef429fb4ce",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/go-yaml/yaml/tree/v2.2.2",
@@ -7341,16 +7946,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:50 GMT"
+ "Thu, 16 Jul 2020 21:35:20 GMT"
],
"Etag": [
- "W/\"3ee1ccfc7bc5fb1bf08768e31ed27b8f\""
+ "W/\"23a13d8bb33ee7852cd1e514914706cf\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7359,9 +7964,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=1C%2FdtHogaeieM9wsbNrrjKsdUHNq5wiUM3kVCcG6N00I53TjR4joHmDoqjm7iQK9YeVfQx%2BMM%2BDFt83tz2WSbA1%2FaxVO0mqn%2BeWU%2Bqw1nXSX9YbkT5TV3Dh06nf46z3fdFkajKQHbFQsun64qcHK4OgjKNllWUW16JoB8cPNvJ9y%2BtzaCVzNk4%2Fq4kr0Oj0X6ZF5RUjOqGhevksEA0MmeoDqcrcQbwZaA4fb03IOCIwGP7IOTvLHSkvQNS5JKLKq7VsQQMkPnuNRjn0ZEYeCJw%3D%3D--zoKIF1YPQjF1W%2B6W--ipbHGDQts4BxQpE0Ad1EXg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1965113253.1592439230; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=MK6sSkdvl98dk7oPwZD7k4cr%2FBTY6qFwRCBMDl6FIlda6kiN4hd9puVQerhqsoIlViPRTQ%2BiWifE4%2B46gcZSAYlibTlXJ%2F9%2FaEgjbVLaM00ll1uaPnaouLDg3ZQbZYOsgz7vFreRK%2Fh1omD%2B1HABSXMwkbcVwXo35hcU1Aowg60MNynhy8zawcQU0okViqu398FVwPJW%2FGKW36IrdEteUvWJA7TOGFiS7zKTC0Mbqn08xl4t9jX%2BLrTNW6Q2fD9QZSnhHFf%2BevBpZdYbmwHv6w%3D%3D--KBxnUlFqi3oY%2FCqG--w1ZCvKlqP%2F%2FBR6h7NFeJEw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.924160188.1594935320; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7379,7 +7984,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF4D:1D9B60C:5EEAB1BE"
+ "7960:5415:97C209:E2A09D:5F10C818"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7389,7 +7994,7 @@
}
},
{
- "ID": "77e58731e8e4789d",
+ "ID": "d03e80cb018eaec8",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/go-yaml/yaml/blob/v2.2.2/yaml.go",
@@ -7416,16 +8021,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:51 GMT"
+ "Thu, 16 Jul 2020 21:35:20 GMT"
],
"Etag": [
- "W/\"e2c95c3f37bbaf907c5b463ada941167\""
+ "W/\"397b206cfdda045a2d874a690b6fa626\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7434,9 +8039,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=qH4TIHiPsZtR9abZqOqLDKBWbKv2J4fh3OlK%2FQaqwR4ZF%2BT%2BvyyEMv38IoQLQuN9yToa1bp65y%2FYQYnPzaUvNmYXFOXKRUWW8c1lGfrarPSWqIjne5jpsk9RhQj1zLY9LwW%2BAxYFE6JbM7GSJMeWb2Wd%2FOQsFwAWZYn5aKa4jEA0sF6n7L%2B9DggShULXsKSlWEnhgG2Lj73cqIHyEBRaiH2RPHzszA%2BLAaiNnzUKvaBKT8H9Ry7qCXp0uEqIGQkn9yyqxZ7ASz36RtYlPB4l9g%3D%3D--0dX6Zt0jnwqGFVR2--UIyYnUN3r%2BumecnsNaKgdw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.840241575.1592439230; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:50 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=nsaiXZYrjuCC5NXp9PwzYhHMfQj7bVYFple9rW3Mg140314eWuchDC89bbk3VvSBM5xqXd0K3cq4R9OughTNEsOn6NC4WB5NkQaNqZm%2FdkMy4IPMUO8T%2BhTIUEY7EEOyKs869uyTiMoFy0Tk0OgPaxA02aHbZoGpuK%2Fr5LZBNzjI0mwtKXwx8SPDjWqfvBa2DXB3ZaJ22L8u8Yu2sN9%2BBirFMnYgpytbyW98bxaTALYcOTadHHPET9cbGAEUQcXFMehDDEoa0JMCWgu%2FoE9i%2FA%3D%3D--UBhVDYCsAFXx4np7--QY4S7vKfFL7LphKIPouEfg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.655435183.1594935320; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7454,7 +8059,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF54:1D9B619:5EEAB1BE"
+ "7960:5415:97C23D:E2A0EB:5F10C818"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7464,7 +8069,7 @@
}
},
{
- "ID": "d99be8d0d4e01808",
+ "ID": "01671f0f081b01a7",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/go-yaml/yaml/blob/v2.2.2/yaml.go",
@@ -7491,16 +8096,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:51 GMT"
+ "Thu, 16 Jul 2020 21:35:20 GMT"
],
"Etag": [
- "W/\"e2c95c3f37bbaf907c5b463ada941167\""
+ "W/\"397b206cfdda045a2d874a690b6fa626\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7509,9 +8114,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=tfYyLszbV2n%2Fd8TVXtk3q366bjy3jI3zhLhWxoDNx%2BC3zOZF%2BzBf0h3Sk1IF2RSKj8S%2FlUy2WvsrshsvVu5gow5zWa801aGpm%2F3BIz4xQRLgqY2luIfUVPJARRSvBS%2FK6anEB7eh%2BVQe5FPOxE%2Bdbc7owB9R%2FKTCBnI3droyxvWn4jZiJNx5u7V7rb30Z3DFNfeP0dToUgmm3eOFfkSlCTMkusuf0sb0J3UrIiuvd6oLK88NMyJn9W3Msh9brXot6yPXdtzZ9qlnEY2OVc8vaw%3D%3D--JcD66VNw%2FnpgmQgM--DWEC4Z1POiiGwAD4qGHqvA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1818521095.1592439231; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:51 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:51 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=fZKCjybijiRLQBLxiZp%2F9b9OTyT5UUUMFncKUA9Xf2k%2FdZ0Yz0OMWXv%2BsykU%2Bp7brVenN5XmmAnCWtdI5b1TdwM0Z4zXgxUyuRp0bYnrcK0NUdzGIdh33vnqsRwIRnZKsesliOxD4MVRc4bYo7k2a2DJxCnVCmLeD8sUg1KBMuVEt8v0N2oOBLfYbtG87xCmfXexAIdev6QX3abbwKtjWnLD6yolDCkOIdqVeBfhVti5V84KcA5xMpxHDfjdNre34uZdL4DTMxbX4sCIajeFVA%3D%3D--dv0JqFL7iITd0bJB--dm7jxNqOglUo%2BHgPEpOjWQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1474189830.1594935320; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:20 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7529,7 +8134,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF5B:1D9B62C:5EEAB1BF"
+ "7960:5415:97C27A:E2A13B:5F10C818"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "e83f1a9e625b90ff",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/go-yaml/yaml/raw/v2.2.2/yaml.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "127"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:21 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/go-yaml/yaml/v2.2.2/yaml.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97C27F:E2A13F:5F10C818"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7539,11 +8217,14 @@
}
},
{
- "ID": "1a233cec3822f540",
+ "ID": "55c628ffc2c4677d",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/go-yaml/yaml/v2.2.2/yaml.go",
"Header": {
+ "Referer": [
+ "https://github.com/go-yaml/yaml/raw/v2.2.2/yaml.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -7578,13 +8259,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:51 GMT"
+ "Thu, 16 Jul 2020 21:35:21 GMT"
],
"Etag": [
"\"b2c280c4cb8257800751a924a1ff5beedc82b348857f542243b6946b15773192\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:51 GMT"
+ "Thu, 16 Jul 2020 21:40:21 GMT"
],
"Source-Age": [
"0"
@@ -7609,19 +8290,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "811af83da23679574bb8a1b1cca53703afa0ea13"
+ "2d17d45393c904d57173578bc4fd3bff3a3131bd"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "DF90:598C:271C0D:302CA3:5EEAB1BB"
+ "E64A:3853:17CB4B:1BFA9B:5F10C818"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439231.192754,VS0,VE259"
+ "S1594935321.037648,VS0,VE137"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7631,7 +8312,7 @@
}
},
{
- "ID": "ba35fde4ce56258b",
+ "ID": "720ed6dc3ef634a6",
"Request": {
"Method": "GET",
"URL": "https://gopkg.in/boltdb/bolt.v1?go-get=1",
@@ -7664,7 +8345,7 @@
"text/html"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:51 GMT"
+ "Thu, 16 Jul 2020 21:35:21 GMT"
],
"Server": [
"Apache/2.4.29 (Ubuntu)"
@@ -7677,7 +8358,7 @@
}
},
{
- "ID": "9f6b82fec5c57acb",
+ "ID": "35369fad568a0282",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/boltdb/bolt",
@@ -7704,16 +8385,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:52 GMT"
+ "Thu, 16 Jul 2020 21:35:22 GMT"
],
"Etag": [
- "W/\"9ef784c7a0894c3deaad1c559802b573\""
+ "W/\"42ae76466c6770e8b4b1aebe0e8e89bb\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7722,9 +8403,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=L%2F%2FdISRfKB9vRRrvDKebEE1VeKXqPweVQFzvOxpYNnqf12AmeBkE6TjcSg4tvCreZlDnVYtyScWotudnnGtZK1zaeYtdYkEuNEXUuOKuc2m8whX72AqgWDKr5FvoRXxw%2B1NQRI%2BvyWb8XDkgHZQ49bowRjn2BdFE9sS%2Fbmc4y4PFhU6TeqXimJ4DPYghj4pXLJ08TkggidCwxOyy3lXQam64b7euxaICIDZYJUcpyvMMLTZ5x192Bg5rXWA9CreWOIOC1IvyBcrm8nlRni%2BN0w%3D%3D--WKBGrY%2FAZkjG1dhp--79yo0ah9P7qYEz5eO9VpSQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.812685041.1592439231; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:51 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:51 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=YqOnBWF2daTMetebzpimFuAGh8%2FA2%2B1wXnV2rgaGJ7uNi3RiBBwa1EjVH%2BGFTeFDFp8V%2BYewrmWnd%2BHNbKO4PoQK4mPPdLoaMxGvm5xuPEgBcBuEQQzkzYJsdP00q5ZVSmYCfVUlMUZ80kCXLEcEGsFmUOa%2B3G9oLvX9Bof9tHSNCpjK%2Feu%2BB1Lzrt%2Bozw0Y72F94%2Fu7PdxjTx3Bl1SQDKcQ4OxaZ7kjHHWOYm6fkpG0p2impRSzpw2DxmuqfPxoYcin2LLXJsEQd%2BIxL6Ao2w%3D%3D--2FmEh3DHS0yDeIeE--juURjTZZgOWmZCOHAXgRvg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.741013946.1594935321; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:21 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:21 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7742,7 +8423,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF78:1D9B62F:5EEAB1BF"
+ "7960:5415:97C2D7:E2A157:5F10C819"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7752,7 +8433,7 @@
}
},
{
- "ID": "e47bd77fe985b403",
+ "ID": "36dc38fec3a9c3fb",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/boltdb/bolt/tree/v1.3.0",
@@ -7779,16 +8460,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:52 GMT"
+ "Thu, 16 Jul 2020 21:35:22 GMT"
],
"Etag": [
- "W/\"b91fa36c1c8fdcc35329a4ba626c9d33\""
+ "W/\"8b3a155380e029e043ac4c1c41d84751\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7797,9 +8478,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=Yf64x5aWgQRGawf7ljvvJPdR7SFXlqw1iC7Me7q1KDKWb0LXZurMHGtLHOaZWNN%2BjOlhe3zCikV2Ff%2F02xxgRPK2LYsDr7nIxysHXXIHuU2hMsuCdo7yywxxaChSlMRpIRE9hRlps95NrLXesmu5inoIHDWkcMUohCQzBORQnS3z630Q%2FneJ667vRfeKXUI3%2BiRYrnVGK23m%2BQ3a0rvZqFrjGCWXXp6IcKbwYYZy%2FVHq5fZYgmbEs90iLyK%2Bts0Qfwhcr632Ux8okQVZ%2BJu8lA%3D%3D--lIg6iBevhabSaquM--JUKNh4PUDh51qduQ7fMxyA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.501167689.1592439232; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:52 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:52 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=f%2BlM810RBdbVglnVTCzvh2aR%2Fsfrr0YvjFMDDQP9%2BORIl54GF%2B%2FcL6AvkK3m%2BT6yN4pheYLTdTYM2VjCONow%2F3hPejS9lqh71uOvGN0mGTpCHeeT4NnlyHyYscu7PfTptRrA5W1Fs6G%2FtlSYF%2BZLOBZT%2F0sTMJJHPepUKwqOEWzA1QdJqwS4Z%2Bx3immnhjUDjLLpdVEEgg81%2FMQQAh%2F4z1RKf3SiVBwjPGJJEVusRtlWekwdSitoQzM29iMXJF05tdqSQjiPPkAgIyWVN3lVpw%3D%3D--vpq6s7ATIEH%2FpSup--60ZZXndVkk9I8UFtk8vb%2Bg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.798040604.1594935322; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7817,7 +8498,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF87:1D9B678:5EEAB1C0"
+ "7960:5415:97C309:E2A211:5F10C81A"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7827,7 +8508,7 @@
}
},
{
- "ID": "8551075f432ddc3e",
+ "ID": "a1abf79de3f1aa00",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/boltdb/bolt/blob/v1.3.0/doc.go",
@@ -7854,16 +8535,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:52 GMT"
+ "Thu, 16 Jul 2020 21:35:22 GMT"
],
"Etag": [
- "W/\"6b6d02b8e064aa8ffefe882f54608d46\""
+ "W/\"fa4b9aeec598556a0adef9f2d308a9b8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7872,9 +8553,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=X2E6FPOIJmhAP1lc0T91ywRn6gMOLc%2FI8Jszpv8FdfE%2FgnwDI4iyQnlRAcEs4Il0DoUrp23pLsU6Riftnc6pR6hDCJqmMesN4elJpzA5jOJkZ7N9uG1qQCBFLzdGwRfEs5QbDANnqc9eFBcr73%2FgH43%2BzKGNEyFE1cjK2eJES%2FtehM8QDS0Jyk5dVnQmk6cZ%2BigEnVWEi77Zg8LvopFua4C1OBNvRmidjALPTi4XBw%2FpkapaHXJCSpiosD0mj6gbCW6DkPENivV1zUZCiK01yg%3D%3D--51KMPt0SvrwaUsbn--37pCXnkdzpppPAiRNGn9qg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.883066955.1592439232; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:52 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:52 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=T8WwhP805NOnCbeXWyhmhNDuzH%2FcPYn1ROhUpqUThJ4IEOJBIjbZjj9%2B1FxRG3jRRQLW4mHtPIBQkg9Drbngj%2BhXp0DIV23SOEI2f%2BDZ%2B6ekJBi6u0B1gU%2FFauXgA%2B8oGUdtZVQr0OPOKAWJTzP2SHLUAcRD4SJ%2BYwsaGmkj2ZQq4quqezZ6z6hlKtN6ZYgd8D29cB5Qcs%2B71r9ko7jtpdZp6e5NRxqyPzfRCEwBlACeafHdii5o2IztTGoauEMvMonyJlFPoS2rqC24TNUTbQ%3D%3D--n1Rc3keAtqvBwhhx--FBZK8dFAU2tEpiuFjTSJsg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1615551700.1594935322; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7892,7 +8573,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF90:1D9B68D:5EEAB1C0"
+ "7960:5415:97C338:E2A25A:5F10C81A"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7902,7 +8583,7 @@
}
},
{
- "ID": "a95a6590a83bdafd",
+ "ID": "dbfdabf5ace1bf9b",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/boltdb/bolt/blob/v1.3.0/doc.go",
@@ -7929,16 +8610,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:52 GMT"
+ "Thu, 16 Jul 2020 21:35:22 GMT"
],
"Etag": [
- "W/\"6b6d02b8e064aa8ffefe882f54608d46\""
+ "W/\"fa4b9aeec598556a0adef9f2d308a9b8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -7947,9 +8628,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=rOg4h4Mg52L7J9KyF0vf3i9i%2Bc48Mh98yo%2BvsfAva2dFfPd8F7szduwfnU3H4jYQJiVwRltuh3LwrGF2%2BNyQc%2FRRco%2BiUn%2BjwFJXC%2FCnmmBQ8iGB4raeiHKBEzQe0r8BE7zzYctRt0CXuPE1bCEDpzSmXO3EjRPfrFNkOC3pVjvI0Bv%2FFB4E4GF7euLp5M81YRAhDq9h0NXsbNRyYVBDZBFSGgNSdWVxjtDp%2BzzDveD%2BE92B5KeRZ6bW4iKmKNrYaa%2Br7IumECP0%2BGGNBO3I5A%3D%3D--vlfXZLQJ0vygA4wy--QCn8qDDPJHHpcNu5AH2qGw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.959678059.1592439233; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=R2fcqq9AOF%2BndTSuiq4e349%2F2p5UAhrwrpTJ0x62jNY8CMGsolP0NMR7FAe96oeZOwQIO%2FdcPM8xxci%2Fjl1d6Iq1fnpOeax%2FWYpFKcaDDCwwS4srRUzi2v4TUuoai2jsUOTtgbUzkmkbqkUjQ3pZsypPFcmYkHMUOpB6gwKYShCwZsKAmwvFOULrQJ2NFoZbTxmzgQkcXW1nOchcO4%2B5Td1fYy%2Bqcc0DqGNHYzVZJZ9DysDarWDHaLfjfmY2500O9BQzK%2BXDvVvA2PEH2asxhg%3D%3D--Hpi0Cpgzij5VsgHf--8ks8iPTTOpA7rV80Mfh54Q%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.335222724.1594935322; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:22 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -7967,7 +8648,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EF96:1D9B695:5EEAB1C0"
+ "7960:5415:97C353:E2A284:5F10C81A"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "0daf68f55dda84e6",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/boltdb/bolt/raw/v1.3.0/doc.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "125"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:22 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/boltdb/bolt/v1.3.0/doc.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97C356:E2A286:5F10C81A"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -7977,11 +8731,14 @@
}
},
{
- "ID": "cc184696b54986bd",
+ "ID": "7abfa1237a1c044d",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/boltdb/bolt/v1.3.0/doc.go",
"Header": {
+ "Referer": [
+ "https://github.com/boltdb/bolt/raw/v1.3.0/doc.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -8016,13 +8773,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:53 GMT"
+ "Thu, 16 Jul 2020 21:35:23 GMT"
],
"Etag": [
"\"beb0587b06323b64b8322c086fb5e442a85d2d90088671020ed40cad945e9679\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:53 GMT"
+ "Thu, 16 Jul 2020 21:40:23 GMT"
],
"Source-Age": [
"0"
@@ -8047,19 +8804,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "f76f2e402c6ec87c92aaafa37a5f1d1144002a0d"
+ "88f9601789dc6713d17bddadc5489e442666a546"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "5B5A:182D:52EBB5:64B334:5EEAB1C0"
+ "F1B6:74CE:B1B77:D4972:5F10C818"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439233.031028,VS0,VE128"
+ "S1594935323.900572,VS0,VE124"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8069,7 +8826,7 @@
}
},
{
- "ID": "9ccde2b2b9200433",
+ "ID": "241a4518ce1bf56a",
"Request": {
"Method": "GET",
"URL": "https://gonum.org/v1/gonum?go-get=1",
@@ -8093,7 +8850,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "328173"
+ "88789"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -8105,7 +8862,7 @@
"text/plain"
],
"Date": [
- "Sun, 14 Jun 2020 05:04:20 GMT"
+ "Wed, 15 Jul 2020 20:55:35 GMT"
],
"Location": [
"https://www.gonum.org/v1/gonum?go-get=1"
@@ -8117,14 +8874,14 @@
"max-age=31536000"
],
"X-Nf-Request-Id": [
- "b90e82ce-cd17-4579-abb7-3f6010c98fab-14132154"
+ "37a2ec6b-9afb-4397-a5b4-ada18c4e2e3c-403771"
]
},
"Body": "UmVkaXJlY3RpbmcgdG8gaHR0cHM6Ly93d3cuZ29udW0ub3JnL3YxL2dvbnVtP2dvLWdldD0xCg=="
}
},
{
- "ID": "a7e11ff7c436c7e0",
+ "ID": "62b0f0313cb51c6b",
"Request": {
"Method": "GET",
"URL": "https://www.gonum.org/v1/gonum?go-get=1",
@@ -8151,7 +8908,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "399590"
+ "88674"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -8160,13 +8917,13 @@
"gzip"
],
"Content-Length": [
- "3162"
+ "4806"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Sat, 13 Jun 2020 09:14:04 GMT"
+ "Wed, 15 Jul 2020 20:57:29 GMT"
],
"Etag": [
"1505632130-ssl-df"
@@ -8178,14 +8935,14 @@
"Accept-Encoding"
],
"X-Nf-Request-Id": [
- "af801a80-3bd6-41c0-828a-89fe4d5d3e77-8144208"
+ "201ceaab-2e1e-49ac-a153-87cc2f5ebe34-11239476"
]
},
- "Body": "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"
+ "Body": "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"
}
},
{
- "ID": "3e66d287770a6e65",
+ "ID": "c96c3f6806cd9069",
"Request": {
"Method": "GET",
"URL": "http://gonum.org/v1/gonum?go-get=1",
@@ -8209,7 +8966,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "288821"
+ "88807"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -8221,7 +8978,7 @@
"text/plain"
],
"Date": [
- "Sun, 14 Jun 2020 16:00:12 GMT"
+ "Wed, 15 Jul 2020 20:55:16 GMT"
],
"Location": [
"https://gonum.org/v1/gonum?go-get=1"
@@ -8230,14 +8987,14 @@
"Netlify"
],
"X-Nf-Request-Id": [
- "b90e82ce-cd17-4579-abb7-3f6010c98fab-14132195"
+ "6c8715de-b005-4afd-9346-ed325d4ed250-860627"
]
},
"Body": "UmVkaXJlY3RpbmcgdG8gaHR0cHM6Ly9nb251bS5vcmcvdjEvZ29udW0/Z28tZ2V0PTEK"
}
},
{
- "ID": "7d5a3a7771e83113",
+ "ID": "63398172632e73e2",
"Request": {
"Method": "GET",
"URL": "https://gonum.org/v1/gonum?go-get=1",
@@ -8264,7 +9021,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "328173"
+ "88789"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -8276,7 +9033,7 @@
"text/plain"
],
"Date": [
- "Sun, 14 Jun 2020 05:04:20 GMT"
+ "Wed, 15 Jul 2020 20:55:35 GMT"
],
"Location": [
"https://www.gonum.org/v1/gonum?go-get=1"
@@ -8288,14 +9045,14 @@
"max-age=31536000"
],
"X-Nf-Request-Id": [
- "b90e82ce-cd17-4579-abb7-3f6010c98fab-14132200"
+ "37a2ec6b-9afb-4397-a5b4-ada18c4e2e3c-404016"
]
},
"Body": "UmVkaXJlY3RpbmcgdG8gaHR0cHM6Ly93d3cuZ29udW0ub3JnL3YxL2dvbnVtP2dvLWdldD0xCg=="
}
},
{
- "ID": "c09bf975c1d9326c",
+ "ID": "ddd465d42856ae6e",
"Request": {
"Method": "GET",
"URL": "https://www.gonum.org/v1/gonum?go-get=1",
@@ -8322,7 +9079,7 @@
"ProtoMinor": 1,
"Header": {
"Age": [
- "399590"
+ "88674"
],
"Cache-Control": [
"public, max-age=0, must-revalidate"
@@ -8331,13 +9088,13 @@
"gzip"
],
"Content-Length": [
- "3162"
+ "4806"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Sat, 13 Jun 2020 09:14:04 GMT"
+ "Wed, 15 Jul 2020 20:57:29 GMT"
],
"Etag": [
"1505632130-ssl-df"
@@ -8349,14 +9106,14 @@
"Accept-Encoding"
],
"X-Nf-Request-Id": [
- "af801a80-3bd6-41c0-828a-89fe4d5d3e77-8144252"
+ "201ceaab-2e1e-49ac-a153-87cc2f5ebe34-11239655"
]
},
- "Body": "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"
+ "Body": "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"
}
},
{
- "ID": "74b82c922280756c",
+ "ID": "c581a28c0e0ae53d",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/gonum/gonum",
@@ -8383,16 +9140,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:53 GMT"
+ "Thu, 16 Jul 2020 21:35:24 GMT"
],
"Etag": [
- "W/\"ab65dd0eaa2f3f4e84cd1fd7122e6292\""
+ "W/\"08e8e90c02bf524580682a0138175e18\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -8401,9 +9158,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=fksnuAjboBEhxOHEn49jnpNWVRMzFHY%2FEaN1wAPHJtHT1LnC7aIxHCJZ2SMnRw0p8pzdjEuexxeFryX4rojG2s1XNyOBbP5B3giDyj%2BIj7%2BaiyehDuBmMf1cXEokjEOD5fkbUEI11ioHVpjQ4yq4k8j58V9m0Z2ir5mSQGPijxovhMKSy6fD75CgAhflBAHqz%2FylHMs%2FgbgfNsT0vrvbP3NxCOP1qLQWlEhboCxoMiJzhRxSHR1HhokqLUVrFli5CxNWYQiSQ28%2FnWfwYNuM5Q%3D%3D--gOu8Jm%2FwQyOZrmPz--LqatADW4OhUXKDAqSn3H1g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1650186201.1592439233; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=rKfgBS6SSmp8Z7u5iYbuv0rk%2Fa3nrIGNG%2FOiS2hGjuj7bLZCuie%2FreZyGo%2BI4fMlH%2BQx8simrZu4g%2Fh7b4ZHpPJXeMPwMrtqjU2vxA6BW4tTARUo8dZoYfoRA%2BvboFeuL%2Fc8KeYe2pe0GO4MqOd242syRccadzau3OMf5PfMdaqE1S70LLvBBWv0pcgeSnoPLgDJRSIUXgq1Tc8Hjts%2FVZFgzV%2FUK4stdblA0xaW2FDQuJPDn%2FJ2QVk5JUqG7HtrtosROawIsvvuktrbeIK2mQ%3D%3D--7zbEa4adgYyPeCiG--F%2FhfKJzLGSbgJGAAA4G86A%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.198074159.1594935323; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:23 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:23 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -8421,7 +9178,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EFA1:1D9B699:5EEAB1C1"
+ "7960:5415:97C398:E2A29C:5F10C81A"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8431,7 +9188,7 @@
}
},
{
- "ID": "e28765d4dc9ae147",
+ "ID": "e4ff6ca6bbebd11d",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/gonum/gonum/tree/v0.6.1",
@@ -8458,16 +9215,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:54 GMT"
+ "Thu, 16 Jul 2020 21:35:24 GMT"
],
"Etag": [
- "W/\"da96280ed84da9b170e4eec7c89a83bf\""
+ "W/\"7ab93a3be52d73b67cf408c386f96e25\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -8476,9 +9233,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=UEcG12%2FV946eUU4app8Ohya5w9NB%2F0YtJXjZ0WEVem2u5u0h5YAfQ%2ByL%2FnaYBil53v0uzj0N9i%2B7G7ncFjdtZXmfV2JQOfJuCnbXj%2BRrMvuJXFj4v1eAuOgxU%2FgUfdhFOc8gL1IEcperBbBGf5Niu%2BKmtrN1vQcsT9A5Xf2lomSTGic3cGR4IwQylcQxZccIYy6IhwbzUTOJjT2vxnRVSddP95CjlLzIBruUpLsNTr5Bllyw7NfCZWQKiLrHaRCuMbs0H2qQaQwmUCjDQ4JsJQ%3D%3D--iWhFy%2Bd8DXJ4wxjQ--kBXvkBTKb5jpDTv6om2tkw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1856136080.1592439233; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:53 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=1bQXA4UtIRw4509wW1gQD%2BBDQg5AeKDpGFHLWLBpm4teRPVrhTrZOfpYg%2B6xyqgsTehodKSlRbxzumCNZEnDPawK5SQI%2BCzX7sbyoKwXVGbasB8kBl7vfQhXMXsiI71oqI8opmN6PHATGtZcopAgkxcnUhDMMmFHmpLDZpgT56cowHN%2FV%2FERHIlloA03ROsuaY%2F97OfI3C5JH0Dk8gcTSNALruQJoKJQkTq%2BkV2gNm920I0%2BylAf8n2jalE9tOB27q3vpVw71SwNzGpqLueyBg%3D%3D--rejs0RE%2BncYDt%2FZ7--ihCVTFwVjLP67EMpUU4tmQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.1487327414.1594935324; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:24 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:24 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -8496,7 +9253,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EFAA:1D9B6BB:5EEAB1C1"
+ "7960:5415:97C3F8:E2A37E:5F10C81C"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8506,7 +9263,7 @@
}
},
{
- "ID": "b12e5ec9a4478b73",
+ "ID": "390c7247c5f333e7",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/gonum/gonum/blob/v0.6.1/doc.go",
@@ -8533,16 +9290,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:54 GMT"
+ "Thu, 16 Jul 2020 21:35:25 GMT"
],
"Etag": [
- "W/\"6f517eeb478140cf64eb589f049a30d2\""
+ "W/\"f79c3f8f4c906c08b9bab59be45eead8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -8551,9 +9308,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=0kzvv9mOnp%2BPGUnYd2KHwb6RO5K1Jf0mX4P1ShU70A783BhFUjoTBwRKRpZhSkI2MiaDsK9oc%2BJCz5G1C2tOoXUiCQToJ3SuwVYqLId1ys2YBiKM%2BK%2BqUZiZVPJOq36KYN6e8gFOGZVdDYLkN2Lh6BVEOUTGxLRxHpyRyXNWqIgCHuPJu4eeyiWJt8lLEpctZN1z1gAI5MUI%2BpATam%2BRnyesx0mh2oZ8U3%2FQT%2FD4Fj8jNyoHSDgBCkjXJIgoLgAL1hn5WFN%2F2dKZcIkBhwRXeQ%3D%3D--6WE7wB7R8bYS63Tn--2bzJZVNS%2B6OYx1HToBF2oQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.1449585363.1592439234; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:54 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:54 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=cPuYLaH2L2nEo8rWnGFqjpd26ZtiqJbod0bUOF4KRfxE3BBFZu%2Ba9oKvwFFuATDa5x15SxsFhsdAl4Zw%2FQX%2Fg%2BovNO0KsD4s0opmMJnVEg8QsYQQJYCey4D3FLsf%2BxO2L5JOEPiP5UMceDl532WrWDAmlzY9Ag1JMan857fhVKozSlhBIBja9WqSgul81CK4Iycogwf%2BrqgOlwmI%2BqmE2JuCECgu6ISHtTo4nfvV%2F4Vkz9LXJFvQTOfIYCwU5illngQHRed9dxZlS9VJT3uvgg%3D%3D--zxxWpxeRcqOX755M--PNwtRlcpMfQgqvSYH7BSKw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.725248492.1594935324; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:24 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:24 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -8571,7 +9328,7 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EFB7:1D9B6D9:5EEAB1C2"
+ "7960:5415:97C436:E2A3EA:5F10C81C"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8581,7 +9338,7 @@
}
},
{
- "ID": "56556e079d5a90e9",
+ "ID": "92758dc3d1f47bfb",
"Request": {
"Method": "HEAD",
"URL": "https://github.com/gonum/gonum/blob/v0.6.1/doc.go",
@@ -8608,16 +9365,16 @@
"max-age=0, private, must-revalidate"
],
"Content-Security-Policy": [
- "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://live.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
],
"Content-Type": [
"text/html; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:54 GMT"
+ "Thu, 16 Jul 2020 21:35:25 GMT"
],
"Etag": [
- "W/\"6f517eeb478140cf64eb589f049a30d2\""
+ "W/\"f79c3f8f4c906c08b9bab59be45eead8\""
],
"Expect-Ct": [
"max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
@@ -8626,9 +9383,9 @@
"GitHub.com"
],
"Set-Cookie": [
- "_gh_sess=iC4HrVebA6aOyWImJLz4HGaZzm8Gm1Dezr%2F5PfYvxr9G0R6i8BOib2M8NsBVvp%2BkAYiVTMsjSgoTJTJ571J8STqDXUt6kkEJzpMfITl7782%2B41HtOOJOa0GGMmJxQeWtNd5l2Vcpb%2BOFQreLCkmJq%2BmAClTpraC1RiQsnRM9j%2F42kvS%2BrYOgatoQR2B8fLq%2FnqoGggqX0Byd2KEOkN%2FliMyLknXij7tj6kXD%2BZnIIVwnDqFr8GZQpcpQATR%2BZKtti2M8oDXvlsLe29O9iJVRdQ%3D%3D--wC8UkKpsj9%2BCRmQs--%2BRbjyJxkXcXjVOzqa6tDKg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
- "_octo=GH1.1.509623657.1592439234; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:54 GMT; Secure; SameSite=Lax",
- "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 18 Jun 2021 00:13:54 GMT; HttpOnly; Secure; SameSite=Lax"
+ "_gh_sess=8sx7b5oqIe6BJCcVrUOggOK2vtejqgwVgVYGrgxJesoBzZWGmTFljQnciPj5Dd4ooh7BMZ82B0pj61SAvaAh2tn53X7m1jNd91Sm9k8IFZpAbiveByrpyZ9FqcGzCukG%2BkBQwiAMPoG0wpGNMBMbGbcb%2FkrKseitrxBCCHSYwMMbeoh7AeMf2zFnbtmUfmvCSoZtkrKV2g14W%2BWm%2BXbJwKUZp%2BTSap8jjLKcqZjxR%2Bg7tJXxTdSboJeEonybc%2B9UoarhWLTkl2CK5xjbsSuqfQ%3D%3D--jt1HuULpDZe9n2Zo--U7MRqOPvPNM0aHr%2F5Fs0uA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax",
+ "_octo=GH1.1.73601427.1594935325; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:25 GMT; Secure; SameSite=Lax",
+ "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 16 Jul 2021 21:35:25 GMT; HttpOnly; Secure; SameSite=Lax"
],
"Status": [
"200 OK"
@@ -8646,7 +9403,80 @@
"deny"
],
"X-Github-Request-Id": [
- "7960:34C7:103EFC4:1D9B6F1:5EEAB1C2"
+ "7960:5415:97C460:E2A427:5F10C81D"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "09186e6270968de1",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/gonum/gonum/raw/v0.6.1/doc.go",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "125"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:25 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/gonum/gonum/v0.6.1/doc.go"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97C462:E2A42A:5F10C81D"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8656,11 +9486,14 @@
}
},
{
- "ID": "6ae87415bdde649c",
+ "ID": "be0f1b7d81f4f4b6",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/gonum/gonum/v0.6.1/doc.go",
"Header": {
+ "Referer": [
+ "https://github.com/gonum/gonum/raw/v0.6.1/doc.go"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -8695,13 +9528,13 @@
"text/plain; charset=utf-8"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:54 GMT"
+ "Thu, 16 Jul 2020 21:35:25 GMT"
],
"Etag": [
"\"cc89a8a8111d490e7430f0488c690a9b94d8eeccb3d1a6b3ef6e66b02c3d5159\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:54 GMT"
+ "Thu, 16 Jul 2020 21:40:25 GMT"
],
"Source-Age": [
"0"
@@ -8726,19 +9559,92 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "b42f9395a6669d4d639e6f300b9836cdc338abe3"
+ "7c1d7a2ca55b5f5c599391fd009b5b0460845715"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "797E:04A6:11FFCA:16D2BE:5EEAB1C2"
+ "7A54:06B1:18F96C:1D66E2:5F10C81C"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439235.837829,VS0,VE108"
+ "S1594935325.355674,VS0,VE120"
+ ],
+ "X-Xss-Protection": [
+ "1; mode=block"
+ ]
+ },
+ "Body": ""
+ }
+ },
+ {
+ "ID": "aeb34d61a4afafe2",
+ "Request": {
+ "Method": "HEAD",
+ "URL": "https://github.com/golang/go/raw/go1.13.3/doc/gopher/fiveyears.jpg",
+ "Header": {
+ "User-Agent": [
+ "Go-http-client/1.1"
+ ]
+ },
+ "MediaType": "",
+ "BodyParts": [
+ ""
+ ]
+ },
+ "Response": {
+ "StatusCode": 302,
+ "Proto": "HTTP/1.1",
+ "ProtoMajor": 1,
+ "ProtoMinor": 1,
+ "Header": {
+ "Access-Control-Allow-Origin": [
+ "https://render.githubusercontent.com"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "143"
+ ],
+ "Content-Security-Policy": [
+ "default-src 'none'; base-uri 'self'; block-all-mixed-content; connect-src 'self' uploads.github.com www.githubstatus.com collector.githubapp.com api.github.com www.google-analytics.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com cdn.optimizely.com logx.optimizely.com/v1/events wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com; frame-ancestors 'none'; frame-src render.githubusercontent.com; img-src 'self' data: github.githubassets.com identicons.github.com collector.githubapp.com github-cloud.s3.amazonaws.com *.githubusercontent.com; manifest-src 'self'; media-src 'none'; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; worker-src github.com/socket-worker.js gist.github.com/socket-worker.js"
+ ],
+ "Content-Type": [
+ "text/html; charset=utf-8"
+ ],
+ "Date": [
+ "Thu, 16 Jul 2020 21:35:25 GMT"
+ ],
+ "Expect-Ct": [
+ "max-age=2592000, report-uri=\"https://api.github.com/_private/browser/errors\""
+ ],
+ "Location": [
+ "https://raw.githubusercontent.com/golang/go/go1.13.3/doc/gopher/fiveyears.jpg"
+ ],
+ "Server": [
+ "GitHub.com"
+ ],
+ "Status": [
+ "302 Found"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubdomains; preload"
+ ],
+ "Vary": [
+ "X-PJAX, Accept-Encoding, Accept, X-Requested-With"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-Frame-Options": [
+ "deny"
+ ],
+ "X-Github-Request-Id": [
+ "7960:5415:97C480:E2A443:5F10C81D"
],
"X-Xss-Protection": [
"1; mode=block"
@@ -8748,11 +9654,14 @@
}
},
{
- "ID": "c63116bd03b57038",
+ "ID": "688b74c7611e61c0",
"Request": {
"Method": "HEAD",
"URL": "https://raw.githubusercontent.com/golang/go/go1.13.3/doc/gopher/fiveyears.jpg",
"Header": {
+ "Referer": [
+ "https://github.com/golang/go/raw/go1.13.3/doc/gopher/fiveyears.jpg"
+ ],
"User-Agent": [
"Go-http-client/1.1"
]
@@ -8787,13 +9696,13 @@
"image/jpeg"
],
"Date": [
- "Thu, 18 Jun 2020 00:13:55 GMT"
+ "Thu, 16 Jul 2020 21:35:25 GMT"
],
"Etag": [
"\"cac89b2441450a73be2a3f8818f8d260651f6065a06b7a6af53fc2898ffba0c2\""
],
"Expires": [
- "Thu, 18 Jun 2020 00:18:55 GMT"
+ "Thu, 16 Jul 2020 21:40:25 GMT"
],
"Source-Age": [
"0"
@@ -8818,19 +9727,19 @@
"nosniff"
],
"X-Fastly-Request-Id": [
- "e9a1f32ec045cc57fc32e743b92e8ca39293ce08"
+ "6e79f284493ab8cf22ddf05f97e2e82ee801391e"
],
"X-Frame-Options": [
"deny"
],
"X-Github-Request-Id": [
- "ED24:2FE5:525FEB:6413D9:5EEAB1C2"
+ "216A:42C6:1853A4:1C9928:5F10C81D"
],
"X-Served-By": [
"cache-wdc5562-WDC"
],
"X-Timer": [
- "S1592439235.959789,VS0,VE167"
+ "S1594935326.618223,VS0,VE109"
],
"X-Xss-Protection": [
"1; mode=block"