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
3 changes: 0 additions & 3 deletions .changes/unreleased/added-20251111-144602.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/added-20251111-210116.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/added-20251113-131349.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/added-20251120-143304.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/docs-20251130-120623.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/fixed-20251103-083447.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/fixed-20251111-053940.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/fixed-20251111-134254.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/optimization-20251112-081104.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/optimization-20251119-095159.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/optimization-20251127-181226.yaml

This file was deleted.

25 changes: 25 additions & 0 deletions .changes/v1.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## [v1.3.0](https://pypi.org/project/ms-fabric-cli/v1.3.0) - December 15, 2025

### ✨ New Functionality

* Add support of mv, cp, export and import for SQLDatabase item type
* Add new 'job run-rm' command for remove a scheduled job
* Enhance `set` command for items to support any settable property path within the item's definition and metadata structure
* Add support in `ls` commmand using `-q` flag for filtering based on JMESPath expressions

### 🔧 Bug Fix

* Fix `--output_format` argument for command `fab auth status`
* Fix context persistence in virtual environment
* Fix create connection with onPremGateway and encryptedCredentials

### ⚡ Additional Optimizations

* Add support for print in key-value list style
* Optimize LRO polling by calling GetOperationResult API only when a Location header is present
* Enforce CLI parameter values must be wrapped in single (') or double (") quotes in interactive mode

### 📝 Documentation Update

* Documentation updates

26 changes: 26 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ hide:
# Release Notes


## [v1.3.0](https://pypi.org/project/ms-fabric-cli/v1.3.0) - December 15, 2025

### ✨ New Functionality

* Add support of mv, cp, export and import for SQLDatabase item type
* Add new 'job run-rm' command for remove a scheduled job
* Enhance `set` command for items to support any settable property path within the item's definition and metadata structure
* Add support in `ls` commmand using `-q` flag for filtering based on JMESPath expressions

### 🔧 Bug Fix

* Fix `--output_format` argument for command `fab auth status`
* Fix context persistence in virtual environment
* Fix create connection with onPremGateway and encryptedCredentials

### ⚡ Additional Optimizations

* Add support for print in key-value list style
* Optimize LRO polling by calling GetOperationResult API only when a Location header is present
* Enforce CLI parameter values must be wrapped in single (') or double (") quotes in interactive mode

### 📝 Documentation Update

* Documentation updates


## [v1.2.0](https://pypi.org/project/ms-fabric-cli/v1.2.0) - October 21, 2025

### 🆕 New Items Support
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name="ms-fabric-cli"
authors = [
{ name = "Microsoft Corporation" },
]
version="1.2.0"
version="1.3.0"
description="Command-line tool for Microsoft Fabric"
readme="README.md"
requires-python=">=3.10,<3.13"
Expand Down
2 changes: 1 addition & 1 deletion src/fabric_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Licensed under the MIT License.

# Don't change this
__version__ = "1.2.0"
__version__ = "1.3.0"
2 changes: 1 addition & 1 deletion src/fabric_cli/core/fab_constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
WEB_URI = "https://app.powerbi.com/groups"

# Versioning
FAB_VERSION = "1.2.0" # change pyproject.toml version too, this must be aligned
FAB_VERSION = "1.3.0" # change pyproject.toml version too, this must be aligned

# Scopes
SCOPE_FABRIC_DEFAULT = ["https://analysis.windows.net/powerbi/api/.default"]
Expand Down
Loading