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
267 changes: 0 additions & 267 deletions NEON_CHANGES.md

This file was deleted.

24 changes: 7 additions & 17 deletions src/neon/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,18 @@
Release History
===============

1.0.0b5
+++++++

**Breaking Changes**

* az neon postgres: Removed duplicate postgres command group - commands now available directly under az neon
* Breaking change: az neon postgres [command] is now az neon [command]

**Other Changes**

* Flattened command structure for improved user experience
* Consolidated help documentation for easier navigation
* Updated command structure to eliminate redundant command groups
1.0.0b1
++++++
* Initial release.

1.0.0b4
1.0.0b2
++++++
* Update the CLI command description to support AI related queries.
* Updated command descriptions.

1.0.0b3
++++++
* GA release of Neon CLI. Supports Change Plan, Project, Branches and Database Connection commands.

1.0.0b2
1.0.0b4
++++++
* Updated command descriptions.
* Update the CLI command description to support AI related queries.
14 changes: 0 additions & 14 deletions src/neon/azext_neon/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,3 @@
# pylint: disable=too-many-lines

from knack.help_files import helps # pylint: disable=unused-import

helps["neon"] = """
type: group
short-summary: Manage Neon Serverless Postgres resources (organizations, projects, branches, databases, roles, endpoints, compute).
long-summary: |-
Manage Neon serverless Postgres on Azure including:
* Organization lifecycle
* Project management
* Branch management
* Database operations
* Role management
* Compute / endpoints
NOTE: Previous nested usage 'az neon postgres <subgroup>' is deprecated. Use 'az neon <subgroup>'.
"""
2 changes: 0 additions & 2 deletions src/neon/azext_neon/aaz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

from . import latest
1 change: 0 additions & 1 deletion src/neon/azext_neon/aaz/latest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
# pylint: skip-file
# flake8: noqa

from . import neon
3 changes: 1 addition & 2 deletions src/neon/azext_neon/aaz/latest/neon/__cmd_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
"neon",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Neon Serverless Postgres resources including organizations, projects, and branches.
"""Manage Neon Postgres databases and related resources within Azure.
"""
pass


__all__ = ["__CMDGroup"]

1 change: 0 additions & 1 deletion src/neon/azext_neon/aaz/latest/neon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
# flake8: noqa

from .__cmd_group import *
from . import postgres
23 changes: 23 additions & 0 deletions src/neon/azext_neon/aaz/latest/neon/postgres/__cmd_group.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"neon postgres",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Neon Serverless Postgres resources including organizations, projects, and branches.
"""
pass


__all__ = ["__CMDGroup"]
9 changes: 0 additions & 9 deletions src/neon/azext_neon/aaz/latest/neon/postgres/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,5 @@
# pylint: skip-file
# flake8: noqa

"""Neon Postgres command group and subcommands."""

from .__cmd_group import *
from ._create import *
from . import branch
from . import compute
from . import endpoint
from . import neon_database
from . import neon_role
from . import organization
from . import project
Loading
Loading