azure-deploy-cli 0.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. azure_deploy_cli-0.1.6/.github/dependabot.yml +24 -0
  2. azure_deploy_cli-0.1.6/.github/workflows/1-1-pr-build-check.yaml +23 -0
  3. azure_deploy_cli-0.1.6/.github/workflows/1-2-staging.yaml +34 -0
  4. azure_deploy_cli-0.1.6/.github/workflows/1-3-release.yaml +73 -0
  5. azure_deploy_cli-0.1.6/.github/workflows/2-build.yaml +30 -0
  6. azure_deploy_cli-0.1.6/.github/workflows/2-deploy.yaml +85 -0
  7. azure_deploy_cli-0.1.6/.gitignore +217 -0
  8. azure_deploy_cli-0.1.6/.pre-commit-config.yaml +49 -0
  9. azure_deploy_cli-0.1.6/CHANGELOG.md +61 -0
  10. azure_deploy_cli-0.1.6/LICENSE +373 -0
  11. azure_deploy_cli-0.1.6/Makefile +64 -0
  12. azure_deploy_cli-0.1.6/PKG-INFO +678 -0
  13. azure_deploy_cli-0.1.6/README.md +265 -0
  14. azure_deploy_cli-0.1.6/git-cliff/CHANGELOG.md +9 -0
  15. azure_deploy_cli-0.1.6/pyproject.toml +141 -0
  16. azure_deploy_cli-0.1.6/requirements-dev.txt +9 -0
  17. azure_deploy_cli-0.1.6/requirements.txt +7 -0
  18. azure_deploy_cli-0.1.6/setup.cfg +4 -0
  19. azure_deploy_cli-0.1.6/setup.sh +52 -0
  20. azure_deploy_cli-0.1.6/src/azure_deploy_cli/__init__.py +44 -0
  21. azure_deploy_cli-0.1.6/src/azure_deploy_cli/_version.py +34 -0
  22. azure_deploy_cli-0.1.6/src/azure_deploy_cli/aca/aca_cli.py +518 -0
  23. azure_deploy_cli-0.1.6/src/azure_deploy_cli/aca/bash/aca-cert/create.sh +203 -0
  24. azure_deploy_cli-0.1.6/src/azure_deploy_cli/aca/bash/aca-cert/destroy.sh +44 -0
  25. azure_deploy_cli-0.1.6/src/azure_deploy_cli/aca/deploy_aca.py +794 -0
  26. azure_deploy_cli-0.1.6/src/azure_deploy_cli/aca/model.py +35 -0
  27. azure_deploy_cli-0.1.6/src/azure_deploy_cli/cli.py +66 -0
  28. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/__init__.py +36 -0
  29. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/group.py +84 -0
  30. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/identity_cli.py +453 -0
  31. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/managed_identity.py +177 -0
  32. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/models.py +167 -0
  33. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/py.typed +0 -0
  34. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/role.py +338 -0
  35. azure_deploy_cli-0.1.6/src/azure_deploy_cli/identity/service_principal.py +268 -0
  36. azure_deploy_cli-0.1.6/src/azure_deploy_cli/py.typed +0 -0
  37. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/__init__.py +0 -0
  38. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/azure_cli.py +96 -0
  39. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/docker.py +137 -0
  40. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/env.py +108 -0
  41. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/key_vault.py +11 -0
  42. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/logging.py +125 -0
  43. azure_deploy_cli-0.1.6/src/azure_deploy_cli/utils/py.typed +0 -0
  44. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/PKG-INFO +678 -0
  45. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/SOURCES.txt +58 -0
  46. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/dependency_links.txt +1 -0
  47. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/entry_points.txt +3 -0
  48. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/requires.txt +18 -0
  49. azure_deploy_cli-0.1.6/src/azure_deploy_cli.egg-info/top_level.txt +1 -0
  50. azure_deploy_cli-0.1.6/tests/__init__.py +1 -0
  51. azure_deploy_cli-0.1.6/tests/fixtures/.env.example +12 -0
  52. azure_deploy_cli-0.1.6/tests/identity/__init__.py +1 -0
  53. azure_deploy_cli-0.1.6/tests/identity/test_models.py +249 -0
  54. azure_deploy_cli-0.1.6/tests/roles-config.json +24 -0
  55. azure_deploy_cli-0.1.6/tests/test.sh +120 -0
  56. azure_deploy_cli-0.1.6/tests/test_aca_cli.py +71 -0
  57. azure_deploy_cli-0.1.6/tests/test_deploy_aca.py +234 -0
  58. azure_deploy_cli-0.1.6/tests/test_env.py +113 -0
  59. azure_deploy_cli-0.1.6/tests/test_package.py +45 -0
  60. azure_deploy_cli-0.1.6/tests/test_retag_image.py +271 -0
@@ -0,0 +1,24 @@
1
+ version: 2
2
+
3
+ updates:
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
+ commit-message:
9
+ prefix: "build(dep)"
10
+ groups:
11
+ dependencies:
12
+ patterns:
13
+ - "*"
14
+
15
+ - package-ecosystem: "pip"
16
+ directory: "/"
17
+ schedule:
18
+ interval: "weekly"
19
+ commit-message:
20
+ prefix: "build(dep)"
21
+ groups:
22
+ dependencies:
23
+ patterns:
24
+ - "*"
@@ -0,0 +1,23 @@
1
+ name: PR build check
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ permissions:
7
+ contents: write
8
+ pull-requests: write
9
+
10
+ jobs:
11
+ build-dev:
12
+ uses: ./.github/workflows/2-build.yaml
13
+ secrets: inherit
14
+
15
+ dependabot:
16
+ runs-on: ubuntu-latest
17
+ needs: [build-dev]
18
+ steps:
19
+ - name: Auto-merge dependabot PR
20
+ uses: decewei/deploy-tools/actions/dependabot-auto-merge@release
21
+ with:
22
+ app-id: ${{ vars.ACTION_BOT_APP_ID }}
23
+ private-key: ${{ secrets.ACTION_BOT_PRIVATE_KEY }}
@@ -0,0 +1,34 @@
1
+ name: Staging
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch:
8
+
9
+ concurrency:
10
+ group: staging-and-prod
11
+ cancel-in-progress: false
12
+
13
+ permissions:
14
+ contents: write
15
+ pull-requests: write
16
+
17
+ jobs:
18
+ create-release-pr:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v6
23
+ with:
24
+ fetch-depth: 0
25
+
26
+ - name: Create release PR
27
+ uses: decewei/deploy-tools/actions/create-release-pr@release
28
+ with:
29
+ app-id: ${{ vars.ACTION_BOT_APP_ID }}
30
+ private-key: ${{ secrets.ACTION_BOT_PRIVATE_KEY }}
31
+ source-branch: 'main'
32
+ target-branch: 'release'
33
+ label: 'release:required-approval'
34
+ close-label: 'release:cancelled'
@@ -0,0 +1,73 @@
1
+ name: Release
2
+
3
+ on:
4
+ pull_request:
5
+ types: [closed]
6
+ branches:
7
+ - release
8
+ workflow_dispatch:
9
+
10
+ concurrency:
11
+ group: release
12
+ cancel-in-progress: false
13
+
14
+ permissions:
15
+ contents: write
16
+ pull-requests: write
17
+ id-token: write
18
+
19
+ jobs:
20
+ version-and-tag:
21
+ runs-on: ubuntu-latest
22
+ outputs:
23
+ continue: ${{ steps.version.outputs.continue }}
24
+ tag: ${{ steps.version.outputs.tag }}
25
+ version: ${{ steps.version.outputs.version }}
26
+ steps:
27
+ - name: Checkout code
28
+ uses: actions/checkout@v6
29
+ with:
30
+ fetch-depth: 0
31
+ persist-credentials: false
32
+
33
+ - name: Bump version and tag with approval check
34
+ id: version
35
+ uses: decewei/deploy-tools/actions/bump-version-and-tag-with-approval@release
36
+ with:
37
+ app-id: ${{ vars.ACTION_BOT_APP_ID }}
38
+ private-key: ${{ secrets.ACTION_BOT_PRIVATE_KEY }}
39
+ pr-number: ${{ github.event.pull_request.number }}
40
+ repo: ${{ github.repository }}
41
+ tag-prefix: 'v'
42
+ main-branch: 'main'
43
+ release-branch: 'release'
44
+ semantic-version-pattern-major: '/!:|BREAKING CHANGE:/'
45
+ semantic-version-pattern-minor: '/feat:/'
46
+ version-file-type: 'python'
47
+ enable-prerelease: ${{ contains(github.event.pull_request.labels.*.name, 'release:candidate') }}
48
+ prerelease-suffix: 'rc'
49
+
50
+ deploy-prod:
51
+ if: ${{ needs.version-and-tag.outputs.continue == 'true' }}
52
+ needs: [version-and-tag]
53
+ uses: ./.github/workflows/2-deploy.yaml
54
+ secrets: inherit
55
+ with:
56
+ tag: ${{ needs.version-and-tag.outputs.tag }}
57
+ version: ${{ needs.version-and-tag.outputs.version }}
58
+
59
+ update-pr-label:
60
+ needs: [deploy-prod, version-and-tag]
61
+ if: ${{ github.event_name == 'pull_request' && needs.version-and-tag.outputs.continue == 'true' && always() }}
62
+ runs-on: ubuntu-latest
63
+ steps:
64
+ - name: Label release PR
65
+ uses: decewei/deploy-tools/actions/label-release-pr@release
66
+ with:
67
+ app-id: ${{ vars.ACTION_BOT_APP_ID }}
68
+ private-key: ${{ secrets.ACTION_BOT_PRIVATE_KEY }}
69
+ pr-number: ${{ github.event.pull_request.number }}
70
+ repo: ${{ github.repository }}
71
+ deploy-result: ${{ needs.version-and-tag.result && needs.deploy-prod.result }}
72
+ released-label: 'release:released'
73
+ failed-label: 'release:failed-to-release'
@@ -0,0 +1,30 @@
1
+ name: build-callable
2
+
3
+ on:
4
+ workflow_call:
5
+
6
+ jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v6
13
+
14
+ - name: Set up Python 3.11
15
+ uses: actions/setup-python@v6
16
+ with:
17
+ python-version: '3.11'
18
+ cache: 'pip'
19
+
20
+ - name: Install dependencies
21
+ run: make install-dev
22
+
23
+ - name: Lint
24
+ run: make lint
25
+
26
+ - name: Type check
27
+ run: make type-check
28
+
29
+ - name: Test
30
+ run: make test
@@ -0,0 +1,85 @@
1
+ name: deploy-callable
2
+
3
+ on:
4
+ workflow_call:
5
+ inputs:
6
+ ref:
7
+ description: 'Commit SHA for rollback'
8
+ required: false
9
+ type: string
10
+ version:
11
+ description: 'Version being deployed'
12
+ required: true
13
+ type: string
14
+ tag:
15
+ description: 'Tag being deployed'
16
+ required: true
17
+ type: string
18
+
19
+ env:
20
+ CI: true
21
+
22
+ permissions:
23
+ contents: write
24
+ pull-requests: write
25
+ id-token: write
26
+
27
+ jobs:
28
+ deploy:
29
+ runs-on: ubuntu-latest
30
+ steps:
31
+ - name: Configure git authentication
32
+ id: auth
33
+ uses: decewei/deploy-tools/actions/configure-git-auth@release
34
+ with:
35
+ app-id: ${{ vars.ACTION_BOT_APP_ID }}
36
+ private-key: ${{ secrets.ACTION_BOT_PRIVATE_KEY }}
37
+
38
+ - uses: actions/checkout@v6
39
+ with:
40
+ fetch-depth: 0
41
+ ref: ${{ inputs.ref || inputs.tag }}
42
+
43
+ - name: Set up Python 3.11
44
+ uses: actions/setup-python@v6
45
+ with:
46
+ python-version: '3.11'
47
+ cache: 'pip'
48
+
49
+ - name: Install build dependencies
50
+ run: |
51
+ python -m pip install --upgrade pip
52
+ pip install build
53
+
54
+ - name: Build package
55
+ run: |
56
+ python -m build
57
+
58
+ - name: Publish package distributions to PyPI
59
+ uses: pypa/gh-action-pypi-publish@release/v1
60
+ with:
61
+ user: __token__
62
+ password: ${{ secrets.PYPI_TOKEN }}
63
+
64
+ - name: Extract Changelog
65
+ id: changelog
66
+ uses: CSchoel/release-notes-from-changelog@v1
67
+ with:
68
+ version: ${{ inputs.tag }}
69
+
70
+ - name: Create GitHub Release
71
+ uses: actions/create-release@v1
72
+ with:
73
+ tag_name: ${{ inputs.tag }}
74
+ name: Release ${{ inputs.tag }}
75
+ body: |
76
+ ## Changes
77
+
78
+ ${{ steps.changelog.outputs.changelog }}
79
+
80
+ ## Installation
81
+
82
+ Install from PyPI:
83
+ ```bash
84
+ pip install azure-deploy-cli
85
+ ```
@@ -0,0 +1,217 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # setuptools-scm version file (auto-generated)
7
+ src/azure_deploy_cli/_version.py
8
+
9
+ .vscode/
10
+ azure-deploy-cli/
11
+ tests/.env.local
12
+ tests/.env.file
13
+ tests/.env.role-public
14
+ # C extensions
15
+ *.so
16
+
17
+ # Distribution / packaging
18
+ .Python
19
+ build/
20
+ develop-eggs/
21
+ dist/
22
+ downloads/
23
+ eggs/
24
+ .eggs/
25
+ lib/
26
+ lib64/
27
+ parts/
28
+ sdist/
29
+ var/
30
+ wheels/
31
+ share/python-wheels/
32
+ *.egg-info/
33
+ .installed.cfg
34
+ *.egg
35
+ MANIFEST
36
+
37
+ # PyInstaller
38
+ # Usually these files are written by a python script from a template
39
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
40
+ *.manifest
41
+ *.spec
42
+
43
+ # Installer logs
44
+ pip-log.txt
45
+ pip-delete-this-directory.txt
46
+
47
+ # Unit test / coverage reports
48
+ htmlcov/
49
+ .tox/
50
+ .nox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *.cover
57
+ *.py.cover
58
+ .hypothesis/
59
+ .pytest_cache/
60
+ cover/
61
+
62
+ # Translations
63
+ *.mo
64
+ *.pot
65
+
66
+ # Django stuff:
67
+ *.log
68
+ local_settings.py
69
+ db.sqlite3
70
+ db.sqlite3-journal
71
+
72
+ # Flask stuff:
73
+ instance/
74
+ .webassets-cache
75
+
76
+ # Scrapy stuff:
77
+ .scrapy
78
+
79
+ # Sphinx documentation
80
+ docs/_build/
81
+
82
+ # PyBuilder
83
+ .pybuilder/
84
+ target/
85
+
86
+ # Jupyter Notebook
87
+ .ipynb_checkpoints
88
+
89
+ # IPython
90
+ profile_default/
91
+ ipython_config.py
92
+
93
+ # pyenv
94
+ # For a library or package, you might want to ignore these files since the code is
95
+ # intended to run in multiple environments; otherwise, check them in:
96
+ # .python-version
97
+
98
+ # pipenv
99
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
100
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
101
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
102
+ # install all needed dependencies.
103
+ #Pipfile.lock
104
+
105
+ # UV
106
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ #uv.lock
110
+
111
+ # poetry
112
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
113
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
114
+ # commonly ignored for libraries.
115
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
116
+ #poetry.lock
117
+ #poetry.toml
118
+
119
+ # pdm
120
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
121
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
122
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
123
+ #pdm.lock
124
+ #pdm.toml
125
+ .pdm-python
126
+ .pdm-build/
127
+
128
+ # pixi
129
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
130
+ #pixi.lock
131
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
132
+ # in the .venv directory. It is recommended not to include this directory in version control.
133
+ .pixi
134
+
135
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
136
+ __pypackages__/
137
+
138
+ # Celery stuff
139
+ celerybeat-schedule
140
+ celerybeat.pid
141
+
142
+ # SageMath parsed files
143
+ *.sage.py
144
+
145
+ # Environments
146
+ .env
147
+ .envrc
148
+ .venv
149
+ env/
150
+ venv/
151
+ ENV/
152
+ env.bak/
153
+ venv.bak/
154
+
155
+ # Spyder project settings
156
+ .spyderproject
157
+ .spyproject
158
+
159
+ # Rope project settings
160
+ .ropeproject
161
+
162
+ # mkdocs documentation
163
+ /site
164
+
165
+ # mypy
166
+ .mypy_cache/
167
+ .dmypy.json
168
+ dmypy.json
169
+
170
+ # Pyre type checker
171
+ .pyre/
172
+
173
+ # pytype static type analyzer
174
+ .pytype/
175
+
176
+ # Cython debug symbols
177
+ cython_debug/
178
+
179
+ # PyCharm
180
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
181
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
182
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
183
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
184
+ #.idea/
185
+
186
+ # Abstra
187
+ # Abstra is an AI-powered process automation framework.
188
+ # Ignore directories containing user credentials, local state, and settings.
189
+ # Learn more at https://abstra.io/docs
190
+ .abstra/
191
+
192
+ # Visual Studio Code
193
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
194
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
195
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
196
+ # you could uncomment the following to ignore the entire vscode folder
197
+ # .vscode/
198
+
199
+ # Ruff stuff:
200
+ .ruff_cache/
201
+
202
+ # PyPI configuration file
203
+ .pypirc
204
+
205
+ # Cursor
206
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
207
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
208
+ # refer to https://docs.cursor.com/context/ignore-files
209
+ .cursorignore
210
+ .cursorindexingignore
211
+
212
+ # Marimo
213
+ marimo/_static/
214
+ marimo/_lsp/
215
+ __marimo__/
216
+
217
+ src/azure_deploy_cli/_version.py
@@ -0,0 +1,49 @@
1
+ # Pre-commit hooks for grantcompass-scraper
2
+ # See https://pre-commit.com for more information
3
+
4
+ repos:
5
+ # Commitizen - enforce conventional commits
6
+ - repo: https://github.com/commitizen-tools/commitizen
7
+ rev: v3.29.1
8
+ hooks:
9
+ - id: commitizen
10
+ stages: [commit-msg]
11
+
12
+ # Ruff - Python linting and formatting
13
+ - repo: https://github.com/astral-sh/ruff-pre-commit
14
+ rev: v0.6.9
15
+ hooks:
16
+ - id: ruff
17
+ args: [--fix]
18
+ - id: ruff-format
19
+
20
+ # mypy - static type checking
21
+ - repo: https://github.com/pre-commit/mirrors-mypy
22
+ rev: v1.11.2
23
+ hooks:
24
+ - id: mypy
25
+ additional_dependencies: []
26
+ args: [--config-file=pyproject.toml]
27
+ exclude: ^tests/
28
+
29
+ # General pre-commit hooks
30
+ - repo: https://github.com/pre-commit/pre-commit-hooks
31
+ rev: v6.0.0
32
+ hooks:
33
+ - id: trailing-whitespace
34
+ - id: end-of-file-fixer
35
+ - id: check-yaml
36
+ - id: check-added-large-files
37
+ args: ['--maxkb=1000']
38
+ - id: check-merge-conflict
39
+ - id: detect-private-key
40
+
41
+ # Prevent committing sensitive Azure credentials
42
+ - repo: local
43
+ hooks:
44
+ - id: block-azure-credentials
45
+ name: Block Azure Credentials
46
+ entry: bash -c 'grep -rE "(clientSecret|privateKey|password|connection.?string)" --include="*.py" --include="*.json" src/ tests/ || true; [[ $? -eq 1 ]]'
47
+ language: system
48
+ types: [python, json]
49
+ stages: [commit]
@@ -0,0 +1,61 @@
1
+ ## [0.1.5] - 2026-01-05
2
+
3
+ ### 🐛 Bug Fixes
4
+
5
+ - Fix permissions
6
+
7
+ ### ⚙️ Miscellaneous Tasks
8
+
9
+ - *(release)* Bump version to 0.1.5 [skip ci]
10
+ ## [0.1.4] - 2026-01-05
11
+
12
+ ### 🐛 Bug Fixes
13
+
14
+ - Version and tag and pypi publish permissions
15
+
16
+ ### ⚙️ Miscellaneous Tasks
17
+
18
+ - *(release)* Bump version to 0.1.4 [skip ci]
19
+ ## [0.1.3] - 2026-01-05
20
+
21
+ ### 🐛 Bug Fixes
22
+
23
+ - Add tag
24
+
25
+ ### ⚙️ Miscellaneous Tasks
26
+
27
+ - Publish without token
28
+ - *(release)* Bump version to 0.1.3 [skip ci]
29
+ ## [0.1.2] - 2026-01-05
30
+
31
+ ### 🐛 Bug Fixes
32
+
33
+ - Add a dummy release note header and extract changelog parameter
34
+
35
+ ### ⚙️ Miscellaneous Tasks
36
+
37
+ - *(release)* Bump version to 0.1.2 [skip ci]
38
+ ## [0.1.1] - 2026-01-05
39
+
40
+ ### 🐛 Bug Fixes
41
+
42
+ - Add a changelog file
43
+
44
+ ### ⚙️ Miscellaneous Tasks
45
+
46
+ - *(release)* Bump version to 0.1.1 [skip ci]
47
+ ## [0.1.0] - 2026-01-05
48
+
49
+ ### 🚀 Features
50
+
51
+ - Init (#1)
52
+
53
+ ### 🐛 Bug Fixes
54
+
55
+ - Release
56
+
57
+ ### ⚙️ Miscellaneous Tasks
58
+
59
+ - Fix workflow permissions (#3)
60
+
61
+ ## Dummy