Skip to content

Commit

Permalink
Merge branch 'main' into SNOW-1846319-add-feature-flag-for-spcs-snow-…
Browse files Browse the repository at this point in the history
…cli-log-streaming
  • Loading branch information
sfc-gh-ashen authored Dec 12, 2024
2 parents 5889d91 + 5a3e36e commit d3cbacc
Show file tree
Hide file tree
Showing 30 changed files with 1,087 additions and 174 deletions.
5 changes: 4 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
* `snow app release-directive list`
* `snow app release-directive set`
* `snow app release-directive unset`
* Add support for release channels feature in native app version creation/drop.
* `snow app version create` now returns version, patch, and label in JSON format.

## Fixes and improvements
* Fixed crashes with older x86_64 Intel CPUs.
* Fixed inability to add patches to lowercase quoted versions
* Added a feature flag for log streaming to support staged rollouts
* Fixes label being set to blank instead of None when not provided.
* Added a feature flag `ENABLE_SPCS_LOG_STREAMING` to control the rollout of the log streaming feature

# v3.2.0

Expand Down
5 changes: 4 additions & 1 deletion src/snowflake/cli/_plugins/nativeapp/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,10 @@ def app_validate(
if cli_context.output_format == OutputFormat.JSON:
return ObjectResult(
package.get_validation_result(
use_scratch_stage=True, interactive=False, force=True
action_ctx=ws.action_ctx,
use_scratch_stage=True,
interactive=False,
force=True,
)
)

Expand Down
Loading

0 comments on commit d3cbacc

Please sign in to comment.