Skip to content

Commit 63c0606

Browse files
authored
Merge branch 'main' into chore/update-hbase-phoenix
2 parents 9287d1a + 927bbda commit 63c0606

28 files changed

+1077
-79
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,34 @@ All notable changes to this project will be documented in this file.
1414
util-linux-core contains a basic set of Linux utilities, including the
1515
command logger which allows to enter messages into the system log.
1616
- vector: Add version 0.43.1 ([#980]).
17-
- opa: Add version 1.0.0 ([#981]).
17+
- opa: Add version 1.0.1 ([#981], [#1000]).
1818
- statsd-exporter: Bump version to 0.28.0 ([#982]).
1919
- git-sync: Bump version to 4.4.0 ([#990]).
2020
- kafka: Add versions 3.7.2 and 3.9.0 ([#988]).
2121
- java: Add JDK/JRE 23 ([#992]).
2222
- trino: Add 469 ([#993]).
2323
- trino-cli: Add version 469 ([#993]).
2424
- hbase: Support for 2.6.1 ([#997]).
25+
- trino-storage-connector: Add version 469 ([#996]).
26+
- trino: Add 470 ([#999]).
27+
- trino-cli: Add version 470 ([#999]).
28+
- trino-storage-connector: Add version 470 ([#999]).
29+
- superset: Add version `4.1.1` ([#991]).
2530

2631
### Changed
2732

2833
- kafka: Bump 3.8.0 to 3.8.1 ([#995]).
2934
- Update registry references to oci ([#989]).
35+
- trino-storage-connector: Move the build out of trino/ for easier patching ([#996]).
3036

3137
### Removed
3238

3339
- kafka: Remove `kubectl`, as we are now using listener-op ([#884]).
3440
- vector: remove version 0.41.1 ([#980]).
35-
- opa: remove version 0.66.0 ([#981])
41+
- opa: remove version 0.66.0 ([#981]).
42+
- trino: Remove 469 ([#999]).
43+
- trino-cli: Remove version 469 ([#999]).
44+
- trino-storage-connector: Remove version 469 ([#999]).
3645

3746
### Fixed
3847

@@ -54,10 +63,14 @@ All notable changes to this project will be documented in this file.
5463
[#989]: https://github.com/stackabletech/docker-images/pull/989
5564
[#990]: https://github.com/stackabletech/docker-images/pull/990
5665
[#988]: https://github.com/stackabletech/docker-images/pull/988
66+
[#991]: https://github.com/stackabletech/docker-images/pull/991
5767
[#992]: https://github.com/stackabletech/docker-images/pull/992
5868
[#993]: https://github.com/stackabletech/docker-images/pull/993
5969
[#995]: https://github.com/stackabletech/docker-images/pull/995
70+
[#996]: https://github.com/stackabletech/docker-images/pull/996
6071
[#997]: https://github.com/stackabletech/docker-images/pull/997
72+
[#999]: https://github.com/stackabletech/docker-images/pull/999
73+
[#1000]: https://github.com/stackabletech/docker-images/pull/1000
6174

6275
## [24.11.1] - 2025-01-14
6376

airflow/opa-auth-manager/opa_auth_manager/opa_fab_auth_manager.py

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
from airflow.stats import Stats
1919
from airflow.utils.log.logging_mixin import LoggingMixin
2020
from cachetools import TTLCache, cachedmethod
21-
from typing import override
21+
from typing import Optional, Union
22+
from overrides import override
2223
import json
2324
import requests
2425

@@ -132,8 +133,8 @@ def is_authorized_configuration(
132133
self,
133134
*,
134135
method: ResourceMethod,
135-
details: ConfigurationDetails | None = None,
136-
user: BaseUser | None = None,
136+
details: Optional[ConfigurationDetails] = None,
137+
user: Optional[BaseUser] = None,
137138
) -> bool:
138139
"""
139140
Return whether the user is authorized to perform a given action on
@@ -178,8 +179,8 @@ def is_authorized_connection(
178179
self,
179180
*,
180181
method: ResourceMethod,
181-
details: ConnectionDetails | None = None,
182-
user: BaseUser | None = None,
182+
details: Optional[ConnectionDetails] = None,
183+
user: Optional[BaseUser] = None,
183184
) -> bool:
184185
"""
185186
Return whether the user is authorized to perform a given action on a connection.
@@ -223,9 +224,9 @@ def is_authorized_dag(
223224
self,
224225
*,
225226
method: ResourceMethod,
226-
access_entity: DagAccessEntity | None = None,
227-
details: DagDetails | None = None,
228-
user: BaseUser | None = None,
227+
access_entity: Optional[DagAccessEntity] = None,
228+
details: Optional[DagDetails] = None,
229+
user: Optional[BaseUser] = None,
229230
) -> bool:
230231
"""
231232
Return whether the user is authorized to perform a given action on a DAG.
@@ -277,8 +278,8 @@ def is_authorized_dataset(
277278
self,
278279
*,
279280
method: ResourceMethod,
280-
details: DatasetDetails | None = None,
281-
user: BaseUser | None = None,
281+
details: Optional[DatasetDetails] = None,
282+
user: Optional[BaseUser] = None,
282283
) -> bool:
283284
"""
284285
Return whether the user is authorized to perform a given action on a dataset.
@@ -322,8 +323,8 @@ def is_authorized_pool(
322323
self,
323324
*,
324325
method: ResourceMethod,
325-
details: PoolDetails | None = None,
326-
user: BaseUser | None = None,
326+
details: Optional[PoolDetails] = None,
327+
user: Optional[BaseUser] = None,
327328
) -> bool:
328329
"""
329330
Return whether the user is authorized to perform a given action on a pool.
@@ -367,8 +368,8 @@ def is_authorized_variable(
367368
self,
368369
*,
369370
method: ResourceMethod,
370-
details: VariableDetails | None = None,
371-
user: BaseUser | None = None,
371+
details: Optional[VariableDetails] = None,
372+
user: Optional[BaseUser] = None,
372373
) -> bool:
373374
"""
374375
Return whether the user is authorized to perform a given action on a variable.
@@ -412,7 +413,7 @@ def is_authorized_view(
412413
self,
413414
*,
414415
access_view: AccessView,
415-
user: BaseUser | None = None,
416+
user: Optional[BaseUser] = None,
416417
) -> bool:
417418
"""
418419
Return whether the user is authorized to access a read-only state of the installation.
@@ -446,9 +447,9 @@ def is_authorized_view(
446447
def is_authorized_custom_view(
447448
self,
448449
*,
449-
method: ResourceMethod | str,
450+
method: Union[ResourceMethod, str],
450451
resource_name: str,
451-
user: BaseUser | None = None,
452+
user: Optional[BaseUser] = None,
452453
) -> bool:
453454
"""
454455
Return whether the user is authorized to perform a given action on a custom view.

0 commit comments

Comments
 (0)