Skip to content

Commit

Permalink
chore: move deprecated default version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Jul 13, 2023
1 parent 06459d5 commit b045507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/views/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def generate_json(
@permission_name("explore_json")
@expose("/explore_json/data/<cache_key>", methods=("GET",))
@check_resource_permissions(check_explore_cache_perms)
@deprecated(eol_version="3.0")
@deprecated(eol_version="4.0.0")
def explore_json_data(self, cache_key: str) -> FlaskResponse:
"""Serves cached result data for async explore_json calls
Expand Down Expand Up @@ -269,7 +269,7 @@ def explore_json_data(self, cache_key: str) -> FlaskResponse:
@expose("/explore_json/", methods=EXPLORE_JSON_METHODS)
@etag_cache()
@check_resource_permissions(check_datasource_perms)
@deprecated(eol_version="3.0")
@deprecated(eol_version="4.0.0")
def explore_json(
self, datasource_type: str | None = None, datasource_id: int | None = None
) -> FlaskResponse:
Expand Down

0 comments on commit b045507

Please sign in to comment.