Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump golang.org/x/net from 0.21.0 to 0.23.0 #322

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 144 additions & 0 deletions api-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,17 @@
}
}
},
"ApplyGroupStatesResult": {
"description": "Result of applying GroupState to multiple cyclic groups.",
"x-qlik-stability": "experimental",
"type": "struct",
"entries": {
"ApplySuccess": {
"description": "When true, the cyclic group state was fully applied. *",
"type": "bool"
}
}
},
"ArrayOfNxValuePoint": {
"type": "slice",
"items": {
Expand Down Expand Up @@ -713,6 +724,19 @@
}
}
},
"CyclicGroupPosition": {
"type": "struct",
"entries": {
"ActiveField": {
"description": "Active field of the cyclic group, identified by a zero-based index.",
"type": "int"
},
"Info": {
"description": "Target cyclic group.",
"type": "#/definitions/NxInfo"
}
}
},
"DataField": {
"type": "struct",
"entries": {
Expand Down Expand Up @@ -1215,6 +1239,49 @@
}
]
},
"ApplyGroupStates": {
"x-qlik-stability": "experimental",
"type": "method",
"params": [
{
"type": "https://golang.org/pkg/context/Context"
},
{
"type": "slice",
"items": {
"type": "#/definitions/GroupState"
}
}
],
"returns": [
{
"type": "#/definitions/ApplyGroupStatesResult"
},
{
"type": "error"
}
]
},
"ApplyGroupStatesRaw": {
"x-qlik-stability": "experimental",
"type": "method",
"params": [
{
"type": "https://golang.org/pkg/context/Context"
},
{
"type": "interface"
}
],
"returns": [
{
"type": "https://golang.org/pkg/encoding/json/RawMessage"
},
{
"type": "error"
}
]
},
"ApplyTemporaryBookmark": {
"description": "Apply temporary bookmark identified by Id.\nApplyTemporaryBookmark method is only supported in SaaS Editions of Qlik Sense.\n\nParameters:\n\n◾ id - Identifier of the temporary selection state",
"x-qlik-stability": "locked",
Expand Down Expand Up @@ -4028,6 +4095,43 @@
}
]
},
"GetGroupStates": {
"x-qlik-stability": "experimental",
"type": "method",
"params": [
{
"type": "https://golang.org/pkg/context/Context"
}
],
"returns": [
{
"type": "slice",
"items": {
"type": "#/definitions/GroupState"
}
},
{
"type": "error"
}
]
},
"GetGroupStatesRaw": {
"x-qlik-stability": "experimental",
"type": "method",
"params": [
{
"type": "https://golang.org/pkg/context/Context"
}
],
"returns": [
{
"type": "https://golang.org/pkg/encoding/json/RawMessage"
},
{
"type": "error"
}
]
},
"GetIncludeFileContent": {
"description": "Gets the content of a file.\n\nParameters:\n\n◾ path - [\"lib://CONNECTION_NAME\\\\\\\u003cthe name of the file you want to use\u003e.txt\"]\nOR\n[\"lib://Connection_Name\\\\\\\u003cFolder under your connection\u003e\\\\\\\u003cthe name of the file you want to use\u003e.txt\"]\n[ ] should be used when the first variable contains a lib reference.",
"x-qlik-stability": "locked",
Expand Down Expand Up @@ -12660,6 +12764,20 @@
}
}
},
"GroupState": {
"x-qlik-stability": "experimental",
"type": "struct",
"entries": {
"ActiveFieldDef": {
"description": "String defining the active field.",
"type": "string"
},
"Info": {
"description": "Target cyclic group.",
"type": "#/definitions/NxInfo"
}
}
},
"GroupStateInfo": {
"type": "struct",
"entries": {
Expand Down Expand Up @@ -13822,6 +13940,20 @@
"NxBookmark": {
"type": "struct",
"entries": {
"CyclicGroupStates": {
"description": "Information about cyclic groups by zero-based index. This field is unused.",
"type": "slice",
"items": {
"type": "#/definitions/CyclicGroupPosition"
}
},
"GroupStates": {
"description": "Information about cyclic groups indexed by field definition.",
"type": "slice",
"items": {
"type": "#/definitions/GroupState"
}
},
"Patches": {
"description": "Softpatches to be applied with this bookmark.",
"type": "slice",
Expand Down Expand Up @@ -14666,6 +14798,10 @@
"description": "Index of the active field in a cyclic dimension.\nThis parameter is optional. The default value is 0.\nThis parameter is used in case of cyclic dimensions ( qGrouping is C).",
"type": "int"
},
"Alias": {
"description": "Alias of the dimension.",
"type": "string"
},
"FieldDefs": {
"description": "Array of field names.\nWhen creating a grouped dimension, more than one field name is defined.\nThis parameter is optional.",
"type": "slice",
Expand Down Expand Up @@ -14787,6 +14923,10 @@
"NxLibraryDimension": {
"type": "struct",
"entries": {
"Alias": {
"description": "Alias of the dimension.",
"type": "string"
},
"FieldDefs": {
"description": "Array of dimension names.",
"type": "slice",
Expand All @@ -14813,6 +14953,10 @@
"NxLibraryDimensionDef": {
"type": "struct",
"entries": {
"Alias": {
"description": "Alias of the dimension.",
"type": "string"
},
"FieldDefs": {
"description": "Array of dimension names.",
"type": "slice",
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.21.0
golang.org/x/net v0.23.0
)

require (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf/go.mod h1:RJID2RhlZKId02n
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
Expand Down
72 changes: 70 additions & 2 deletions qix_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading