Skip to content

Commit e0d9213

Browse files
committed
Merge remote-tracking branch 'origin/main' into netstandard-lib
# Conflicts: # spec/Looker.4.0.json # spec/Looker.4.0.oas.json
2 parents 2e03696 + 1436368 commit e0d9213

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+347
-119
lines changed

.release-please-manifest.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
".": "24.18.1",
3-
"packages/api-explorer": "0.9.69",
4-
"packages/code-editor": "0.1.36",
5-
"packages/extension-api-explorer": "22.21.26",
6-
"packages/extension-sdk": "24.18.1",
7-
"packages/extension-sdk-react": "24.18.1",
8-
"packages/extension-utils": "0.1.46",
9-
"packages/hackathon": "22.21.28",
10-
"packages/run-it": "0.9.69",
11-
"packages/sdk": "24.18.1",
12-
"packages/sdk-codegen": "21.9.5",
13-
"packages/sdk-codegen-scripts": "21.5.26",
14-
"packages/sdk-codegen-utils": "21.0.16",
15-
"packages/sdk-node": "24.18.1",
2+
".": "24.20.0",
3+
"packages/api-explorer": "0.9.70",
4+
"packages/code-editor": "0.1.37",
5+
"packages/extension-api-explorer": "22.21.27",
6+
"packages/extension-sdk": "24.20.0",
7+
"packages/extension-sdk-react": "24.20.0",
8+
"packages/extension-utils": "0.1.47",
9+
"packages/hackathon": "22.21.29",
10+
"packages/run-it": "0.9.70",
11+
"packages/sdk": "24.20.0",
12+
"packages/sdk-codegen": "21.9.6",
13+
"packages/sdk-codegen-scripts": "21.5.27",
14+
"packages/sdk-codegen-utils": "21.0.17",
15+
"packages/sdk-node": "24.20.0",
1616
"packages/sdk-rtl": "21.6.3",
17-
"packages/wholly-artifact": "0.1.27",
18-
"packages/wholly-sheet": "0.5.65",
19-
"python": "24.18.1",
20-
"packages/extension-playground": "1.0.26",
21-
"packages/extension-tile-playground": "1.1.13",
22-
"packages/embed-services": "24.18.1",
23-
"packages/embed-components": "24.18.1"
17+
"packages/wholly-artifact": "0.1.28",
18+
"packages/wholly-sheet": "0.5.66",
19+
"python": "24.20.0",
20+
"packages/extension-playground": "1.0.27",
21+
"packages/extension-tile-playground": "1.1.14",
22+
"packages/embed-services": "24.20.0",
23+
"packages/embed-components": "24.20.0"
2424
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [24.20.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-all-v24.18.1...sdk-codegen-all-v24.20.0) (2024-11-07)
4+
5+
6+
### Features
7+
8+
* add Python example for downloading a dashboard as CSV ([#1389](https://github.com/looker-open-source/sdk-codegen/issues/1389)) ([5b55daa](https://github.com/looker-open-source/sdk-codegen/commit/5b55daa47763637ed81a5f78a5f5cdf7ed03bc55)), closes [#1363](https://github.com/looker-open-source/sdk-codegen/issues/1363)
9+
* generate SDKs for Looker 24_20 ([#1537](https://github.com/looker-open-source/sdk-codegen/issues/1537)) ([7544a37](https://github.com/looker-open-source/sdk-codegen/commit/7544a37694d3b64d49116bf69d5e5c5c8dd5db19))
10+
* Kotlin: make isAuthenticated func in AuthSession open for extension to allow custom / proxy AuthSession ([#1535](https://github.com/looker-open-source/sdk-codegen/issues/1535)) ([f95ca75](https://github.com/looker-open-source/sdk-codegen/commit/f95ca75a059e7f14daa995736320dae0cd28c720))
11+
* Kotlin: make Transport class open for extension to allow custom… ([#1520](https://github.com/looker-open-source/sdk-codegen/issues/1520)) ([9fd622f](https://github.com/looker-open-source/sdk-codegen/commit/9fd622f323ed9540dab6fb47b9eaef3c1c79678b))
12+
13+
14+
### Bug Fixes
15+
16+
* remove reference to react in extension-sdk ([#1532](https://github.com/looker-open-source/sdk-codegen/issues/1532)) ([bae0fe3](https://github.com/looker-open-source/sdk-codegen/commit/bae0fe3a599ac081af5573a7c8632fd5f31dfefe))
17+
318
## [24.18.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-codegen-all-v24.18.0...sdk-codegen-all-v24.18.1) (2024-10-21)
419

520

go/sdk/v4/models.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2402,7 +2402,7 @@ type Query struct {
24022402
Filters *map[string]interface{} `json:"filters,omitempty"` // Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
24032403
FilterExpression *string `json:"filter_expression,omitempty"` // Filter Expression
24042404
Sorts *[]string `json:"sorts,omitempty"` // Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
2405-
Limit *string `json:"limit,omitempty"` // Limit
2405+
Limit *string `json:"limit,omitempty"` // Row limit. To download unlimited results, set the limit to -1 (negative one).
24062406
ColumnLimit *string `json:"column_limit,omitempty"` // Column Limit
24072407
Total *bool `json:"total,omitempty"` // Total
24082408
RowTotal *string `json:"row_total,omitempty"` // Raw Total
@@ -4579,7 +4579,7 @@ type WriteQuery struct {
45794579
Filters *map[string]interface{} `json:"filters,omitempty"` // Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
45804580
FilterExpression *string `json:"filter_expression,omitempty"` // Filter Expression
45814581
Sorts *[]string `json:"sorts,omitempty"` // Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
4582-
Limit *string `json:"limit,omitempty"` // Limit
4582+
Limit *string `json:"limit,omitempty"` // Row limit. To download unlimited results, set the limit to -1 (negative one).
45834583
ColumnLimit *string `json:"column_limit,omitempty"` // Column Limit
45844584
Total *bool `json:"total,omitempty"` // Total
45854585
RowTotal *string `json:"row_total,omitempty"` // Raw Total

kotlin/src/main/com/looker/rtl/AuthSession.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ open class AuthSession(
4848
/**
4949
* Is there an active authentication token?
5050
*/
51-
fun isAuthenticated(): Boolean {
51+
open fun isAuthenticated(): Boolean {
5252
val token = activeToken()
5353
if (token.accessToken.isBlank()) return false
5454
return token.isActive()

kotlin/src/main/com/looker/rtl/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ internal fun ZonedDateTime(utcDateTime: String): ZonedDateTime {
110110
}
111111

112112
internal fun Date(utcDateTime: String): Date {
113-
val utcFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
113+
val utcFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US)
114114
utcFormat.timeZone = TimeZone.getTimeZone("UTC")
115115
return utcFormat.parse(utcDateTime)
116116
}

kotlin/src/main/com/looker/sdk/4.0/models.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4510,7 +4510,7 @@ enum class PullRequestMode : Serializable {
45104510
* @property filters Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
45114511
* @property filter_expression Filter Expression
45124512
* @property sorts Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
4513-
* @property limit Limit
4513+
* @property limit Row limit. To download unlimited results, set the limit to -1 (negative one).
45144514
* @property column_limit Column Limit
45154515
* @property total Total
45164516
* @property row_total Raw Total
@@ -7111,7 +7111,7 @@ data class WriteProject(
71117111
* @property filters Filters will contain data pertaining to complex filters that do not contain "or" conditions. When "or" conditions are present, filter data will be found on the `filter_expression` property.
71127112
* @property filter_expression Filter Expression
71137113
* @property sorts Sorting for the query results. Use the format `["view.field", ...]` to sort on fields in ascending order. Use the format `["view.field desc", ...]` to sort on fields in descending order. Use `["__UNSORTED__"]` (2 underscores before and after) to disable sorting entirely. Empty sorts `[]` will trigger a default sort.
7114-
* @property limit Limit
7114+
* @property limit Row limit. To download unlimited results, set the limit to -1 (negative one).
71157115
* @property column_limit Column Limit
71167116
* @property total Total
71177117
* @property row_total Raw Total

kotlin/src/main/com/looker/sdk/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ package com.looker.sdk
2828

2929
const val ENVIRONMENT_PREFIX = "LOOKERSDK"
3030
const val SDK_TAG = "KT-SDK"
31-
const val LOOKER_VERSION = "24.18"
31+
const val LOOKER_VERSION = "24.20"
3232
const val API_VERSION = "4.0"
3333
const val AGENT_TAG = "$SDK_TAG $LOOKER_VERSION"
3434
const val LOOKER_APPID = "x-looker-appid"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"license": "MIT",
33
"name": "sdk-codegen-all",
4-
"version": "24.18.1",
4+
"version": "24.20.0",
55
"description": "All workspaces for SDK code generation",
66
"author": "Looker",
77
"private": true,

packages/api-explorer/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
271271
* @looker/sdk-codegen-scripts bumped from 21.5.25 to 21.5.26
272272
* @looker/sdk-node bumped from 24.18.0 to 24.18.1
273273

274+
### Dependencies
275+
276+
* The following workspace dependencies were updated
277+
* dependencies
278+
* @looker/code-editor bumped from 0.1.36 to 0.1.37
279+
* @looker/extension-utils bumped from 0.1.46 to 0.1.47
280+
* @looker/run-it bumped from 0.9.69 to 0.9.70
281+
* @looker/sdk bumped from 24.18.1 to 24.20.0
282+
* @looker/sdk-codegen bumped from 21.9.5 to 21.9.6
283+
* devDependencies
284+
* @looker/sdk-codegen-scripts bumped from 21.5.26 to 21.5.27
285+
* @looker/sdk-node bumped from 24.18.1 to 24.20.0
286+
274287
## [0.9.66](https://github.com/looker-open-source/sdk-codegen/compare/api-explorer-v0.9.65...api-explorer-v0.9.66) (2024-09-14)
275288

276289

packages/api-explorer/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@looker/api-explorer",
3-
"version": "0.9.69",
3+
"version": "0.9.70",
44
"description": "Looker API Explorer",
55
"main": "lib/index.js",
66
"module": "lib/esm/index.js",
@@ -33,8 +33,8 @@
3333
},
3434
"devDependencies": {
3535
"@looker/components-test-utils": "^1.5.27",
36-
"@looker/sdk-codegen-scripts": "21.5.26",
37-
"@looker/sdk-node": "24.18.1",
36+
"@looker/sdk-codegen-scripts": "21.5.27",
37+
"@looker/sdk-node": "24.20.0",
3838
"@styled-icons/styled-icon": "^10.6.3",
3939
"@testing-library/jest-dom": "5.16.5",
4040
"@testing-library/react": "12.1.5",
@@ -70,15 +70,15 @@
7070
"webpack-merge": "^5.7.3"
7171
},
7272
"dependencies": {
73-
"@looker/code-editor": "0.1.36",
73+
"@looker/code-editor": "0.1.37",
7474
"@looker/components": "^4.1.3",
7575
"@looker/design-tokens": "^3.1.0",
76-
"@looker/extension-utils": "0.1.46",
76+
"@looker/extension-utils": "0.1.47",
7777
"@looker/icons": "^1.5.21",
7878
"@looker/redux": "^0.0.1",
79-
"@looker/run-it": "0.9.69",
80-
"@looker/sdk": "24.18.1",
81-
"@looker/sdk-codegen": "21.9.5",
79+
"@looker/run-it": "0.9.70",
80+
"@looker/sdk": "24.20.0",
81+
"@looker/sdk-codegen": "21.9.6",
8282
"@looker/sdk-rtl": "21.6.3",
8383
"@reduxjs/toolkit": "^1.9.3",
8484
"@styled-icons/material": "^10.47.0",

0 commit comments

Comments
 (0)