Skip to content
Merged
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
8 changes: 7 additions & 1 deletion doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@

## Security Issues

### Bug fixing
* #101: Updated bucketfs-python dependency to the version 1.0.0+
* #153: Updated transformers-extension dependency to 2.2.1+
* #159: Set the upper limit for the exasol-script-language-container-tool to 2.0.0
Re-locked the dependencies (2025-02-11)

## Bug fixing

12 changes: 6 additions & 6 deletions exasol/nb_connector/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,18 +264,18 @@ def open_bucketfs_connection(conf: Secrets) -> bfs.BucketLike:
}

# Connect to the BucketFS service and navigate to the bucket of choice.
bucketfs = bfs.Service(buckfs_url, buckfs_credentials, verify, conf.get(CKey.bfs_service))
return bucketfs[conf.get(CKey.bfs_bucket)]
bucketfs = bfs.Service(buckfs_url, buckfs_credentials, verify, conf.get(CKey.bfs_service)) # type: ignore
return bucketfs[conf.get(CKey.bfs_bucket)] # type: ignore

else:
saas_url, saas_token, saas_account_id = [
conf.get(key) for key in [CKey.saas_url, CKey.saas_token, CKey.saas_account_id]
]
saas_database_id = get_saas_database_id(conf)
return bfs.SaaSBucket(url=saas_url,
account_id=saas_account_id,
database_id=saas_database_id,
pat=saas_token)
return bfs.SaaSBucket(url=saas_url, # type: ignore
account_id=saas_account_id, # type: ignore
database_id=saas_database_id, # type: ignore
pat=saas_token) # type: ignore


def open_ibis_connection(conf: Secrets, **kwargs):
Expand Down
6 changes: 4 additions & 2 deletions exasol/nb_connector/slct_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from exasol_integration_test_docker_environment.lib.docker import ContextDockerClient # type: ignore
from git import Repo
from pathlib import Path
from exasol_script_languages_container_tool.lib import api as exaslct_api # type: ignore
from exasol.slc import api as exaslct_api # type: ignore
from exasol.nb_connector.ai_lab_config import AILabConfig as CKey, AILabConfig
from exasol.nb_connector.language_container_activation import ACTIVATION_KEY_PREFIX
from exasol.nb_connector.secret_store import Secrets
Expand All @@ -29,7 +29,9 @@

PipPackageDefinition = namedtuple('PipPackageDefinition', ['pkg', 'version'])

SLC_RELEASE_TAG = "8.2.0"
# Using the SLC_RELEASE 9.1.0 because we are limited to slc-tool 1.*.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

SLC_RELEASE_TAG = "9.1.0"


class SlcDir:
def __init__(self, secrets: Secrets):
Expand Down
Loading
Loading