-
Notifications
You must be signed in to change notification settings - Fork 25
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
[r] Plumb old-style contexts to new libtiledbsoma
contexts
#3252
[r] Plumb old-style contexts to new libtiledbsoma
contexts
#3252
Conversation
libtiledbsoma
contexts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verified good on my laptop with no AWS environment variables set
Allow plumbing tiledb-r contexts `SOMATileDBContext` objects into libtiledbsoma `soma_context()` objects Modified SOMA methods: - `TileDBObject$new()`: plumb `tiledbsoma_ctx` config options into `soma_context()` when provided [SC-56531](https://app.shortcut.com/tiledb-inc/story/56531) addresses #3213
Bump develop version
b2e28c5
to
793df4f
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release-1.15 release-1.15
# Navigate to the new working tree
cd .worktrees/backport-release-1.15
# Create a new branch
git switch --create backport-3252-to-release-1.15
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 467af019d7c7ec970de97d84c6d32d0903ff7148
# Push it to GitHub
git push --set-upstream origin backport-3252-to-release-1.15
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release-1.15 Then, create a pull request where the |
Manual backport on #3257 The automated backport failed because of |
* [r] Prepare for 1.15.0rc3 * backport #3252
Allow plumbing tiledb-r contexts
SOMATileDBContext
objects into libtiledbsomasoma_context()
objectsModified SOMA methods:
TileDBObject$new()
: plumbtiledbsoma_ctx
config options intosoma_context()
when providedSC-56531
addresses #3213