Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
5bb15cf3
Unverified
Commit
5bb15cf3
authored
Sep 02, 2019
by
Marcus Olsson
Committed by
GitHub
Sep 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build: Update ua-parser/uap-go (#18788)
parent
e1112323
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
4 deletions
+10
-4
go.mod
+2
-1
go.sum
+2
-2
vendor/github.com/ua-parser/uap-go/uaparser/parser.go
+5
-0
vendor/github.com/ua-parser/uap-go/uaparser/yaml.go
+0
-0
vendor/modules.txt
+1
-1
No files found.
go.mod
View file @
5bb15cf3
...
...
@@ -54,6 +54,7 @@ require (
github.com/onsi/gomega v1.5.0 // indirect
github.com/opentracing/opentracing-go v1.1.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.8.1 // indirect
github.com/prometheus/client_golang v0.9.2
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
github.com/prometheus/common v0.2.0
...
...
@@ -66,7 +67,7 @@ require (
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a
github.com/stretchr/testify v1.3.0
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
github.com/ua-parser/uap-go v0.0.0-20190
303233514-1004ccd816b3
github.com/ua-parser/uap-go v0.0.0-20190
826212731-daf92ba38329
github.com/uber-go/atomic v1.3.2 // indirect
github.com/uber/jaeger-client-go v2.16.0+incompatible
github.com/uber/jaeger-lib v2.0.0+incompatible // indirect
...
...
go.sum
View file @
5bb15cf3
...
...
@@ -212,8 +212,8 @@ github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf h1:Z2X3Os7oRzpdJ75iPqWZc0HeJWFYNCvKsfpQwFpRNTA=
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf/go.mod h1:M8agBzgqHIhgj7wEn9/0hJUZcrvt9VY+Ln+S1I5Mha0=
github.com/ua-parser/uap-go v0.0.0-20190
303233514-1004ccd816b3 h1:E7xa7Zur8hLPvw+03gAeQ9esrglfV389j2PcwhiGf/I
=
github.com/ua-parser/uap-go v0.0.0-20190
303233514-1004ccd816b3
/go.mod h1:OBcG9bn7sHtXgarhUEb3OfCnNsgtGnkVf41ilSZ3K3E=
github.com/ua-parser/uap-go v0.0.0-20190
826212731-daf92ba38329 h1:VBsKFh4W1JEMz3eLCmM9zOJKZdDkP5W4b3Y4hc7SbZc
=
github.com/ua-parser/uap-go v0.0.0-20190
826212731-daf92ba38329
/go.mod h1:OBcG9bn7sHtXgarhUEb3OfCnNsgtGnkVf41ilSZ3K3E=
github.com/uber-go/atomic v1.3.2 h1:Azu9lPBWRNKzYXSIwRfgRuDuS0YKsK4NFhiQv98gkxo=
github.com/uber-go/atomic v1.3.2/go.mod h1:/Ct5t2lcmbJ4OSe/waGBoaVvVqtO0bmtfVNex1PFV8g=
github.com/uber/jaeger-client-go v2.16.0+incompatible h1:Q2Pp6v3QYiocMxomCaJuwQGFt7E53bPYqEgug/AoBtY=
...
...
vendor/github.com/ua-parser/uap-go/uaparser/parser.go
View file @
5bb15cf3
...
...
@@ -16,7 +16,9 @@ type RegexesDefinitions struct {
UA
[]
*
uaParser
`yaml:"user_agent_parsers"`
OS
[]
*
osParser
`yaml:"os_parsers"`
Device
[]
*
deviceParser
`yaml:"device_parsers"`
_
[
4
]
byte
// padding for alignment
sync
.
RWMutex
}
type
UserAgentSorter
[]
*
uaParser
...
...
@@ -32,6 +34,7 @@ type uaParser struct {
V1Replacement
string
`yaml:"v1_replacement"`
V2Replacement
string
`yaml:"v2_replacement"`
V3Replacement
string
`yaml:"v3_replacement"`
_
[
4
]
byte
// padding for alignment
MatchesCount
uint64
}
...
...
@@ -64,6 +67,7 @@ type osParser struct {
V2Replacement
string
`yaml:"os_v2_replacement"`
V3Replacement
string
`yaml:"os_v3_replacement"`
V4Replacement
string
`yaml:"os_v4_replacement"`
_
[
4
]
byte
// padding for alignment
MatchesCount
uint64
}
...
...
@@ -97,6 +101,7 @@ type deviceParser struct {
DeviceReplacement
string
`yaml:"device_replacement"`
BrandReplacement
string
`yaml:"brand_replacement"`
ModelReplacement
string
`yaml:"model_replacement"`
_
[
4
]
byte
// padding for alignment
MatchesCount
uint64
}
...
...
vendor/github.com/ua-parser/uap-go/uaparser/yaml.go
View file @
5bb15cf3
This diff is collapsed.
Click to expand it.
vendor/modules.txt
View file @
5bb15cf3
...
...
@@ -210,7 +210,7 @@ github.com/stretchr/testify/require
github.com/stretchr/testify/assert
# github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
github.com/teris-io/shortid
# github.com/ua-parser/uap-go v0.0.0-20190
303233514-1004ccd816b3
# github.com/ua-parser/uap-go v0.0.0-20190
826212731-daf92ba38329
github.com/ua-parser/uap-go/uaparser
# github.com/uber/jaeger-client-go v2.16.0+incompatible
github.com/uber/jaeger-client-go/config
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment