Bump version to v3.16.0-rc1#2807
Merged
sfc-gh-jwilkowski merged 9 commits intorelease-v3.16.0from Mar 17, 2026
Merged
Conversation
Add protobuf>=5.29.6,<6 as an explicit dependency to resolve HIGH severity uncontrolled recursion vulnerability in json_format.ParseDict() (SNYK-PYTHON-PROTOBUF-15090738). protobuf is a transitive dependency via snowflake-snowpark-python. Version 5.29.6 is a patch release within the >=3.20,<6.34 constraint. .... Generated with [Cortex Code](https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code) Co-authored-by: Maciej Oczko <maciej.oczko+snow@snowflake.com> Co-authored-by: Cortex Code <noreply@snowflake.com>
…2805) * fix: escape glob special chars in directory paths during stage copy Directories with square brackets (e.g., [id], [slug]) failed during recursive stage copy with error 'File doesn't exist: [.../[id]/*]'. The bug occurred because [id]/* was interpreted as a glob pattern matching 'i/*' or 'd/*' instead of the literal '[id]/*' directory. Fix: Use glob.escape() before appending /* to directory paths. This only affects real directories (checked via .is_dir()), so user-provided glob patterns like 'src/[abc]' or '*.py' continue to work correctly. Changes: - manager.py:406,369-372: Add glob.escape() when appending wildcards - test_stage.py: Add 4 tests for brackets and glob pattern preservation * fix: strip trailing slashes before glob.escape() in stage put A path like '/tmp/campaigns/[id]/' would produce '/tmp/campaigns/[id]//*' after escaping and appending '/*'. Strip trailing slashes first so the result is always clean (e.g. '/tmp/campaigns/[[]id]/*'). Also removes test_stage_put_preserves_user_glob_patterns_with_brackets which re-implemented the logic under test rather than calling StageManager, and adds two new tests: trailing slash alone and trailing slash + brackets. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
SNOW-2326969 Improved text styles to use a lighter blue instead of standard blue in DCM to increase the contrast when the black terminal background is used
sfc-gh-lkyc
approved these changes
Mar 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pre-review checklist
Changes description
...