Skip to content

Commit 818b320

Browse files
nautobot-botbakebotrobertoduarte-codilime
authored
Cookie updated by NetworkToCode Cookie Drift Manager Tool (#233)
* Cookie updated by NetworkToCode Cookie Drift Manager Tool Template: ``` { "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "dir": "nautobot-app", "ref": "nautobot-app-v2.5.1", "path": null } ``` Cookie: ``` { "remote": "https://github.com/nautobot/nautobot-app-design-builder.git", "path": "/tmp/tmpg2wp_37e/nautobot-app-design-builder", "repository_path": "/tmp/tmpg2wp_37e/nautobot-app-design-builder", "dir": "", "branch_prefix": "drift-manager", "context": { "codeowner_github_usernames": "@mzbroch", "full_name": "Network to Code, LLC", "email": "[email protected]", "github_org": "nautobot", "app_name": "nautobot_design_builder", "verbose_name": "Nautobot Design Builder", "app_slug": "nautobot-design-builder", "project_slug": "nautobot-app-design-builder", "repo_url": "https://github.com/nautobot/nautobot-app-design-builder", "base_url": "design-builder", "min_nautobot_version": "2.0.0", "max_nautobot_version": "2.9999", "camel_name": "NautobotDesignBuilder", "project_short_description": "Nautobot app that uses design templates to easily create data objects in Nautobot with minimal input from a user", "model_class_name": "Design", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/design-builder/en/latest", "_extensions": [ "local_extensions.camel_case_to_kebab", "local_extensions.camel_case_to_words" ], "_template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "_output_dir": "/tmp/tmpg2wp_37e", "_repo_dir": "/github/home/.cookiecutters/cookiecutter-nautobot-app/nautobot-app", "_checkout": "nautobot-app-v2.5.1" }, "base_branch": "develop", "remote_name": "origin", "pull_request_strategy": "PullRequestStrategy.CREATE", "post_actions": [], "baked_commit_ref": "a1017b630005512cf57ad0e2ed0a3c6a3f1b0dbb", "draft": false } ``` CLI Arguments: ``` { "cookie_dir": "", "input": false, "json_filename": "", "output_dir": "", "push": true, "template": "", "template_dir": "", "template_ref": "nautobot-app-v2.5.1", "pull_request": null, "post_action": [], "disable_post_actions": true, "draft": null } ``` * fix conflicts --------- Co-authored-by: bakebot <[email protected]> Co-authored-by: Roberto Duarte <[email protected]>
1 parent 6253891 commit 818b320

File tree

8 files changed

+248
-188
lines changed

8 files changed

+248
-188
lines changed

.cookiecutter.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,14 @@
2121
"_drift_manager": {
2222
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git",
2323
"template_dir": "nautobot-app",
24-
"template_ref": "refs/tags/nautobot-app-v2.5.0",
24+
"template_ref": "nautobot-app-v2.5.1",
2525
"cookie_dir": "",
2626
"branch_prefix": "drift-manager",
2727
"pull_request_strategy": "create",
28-
"post_actions": [
29-
"ruff",
30-
"poetry"
31-
],
28+
"post_actions": [],
3229
"draft": false,
3330
"baked_commit_ref": "a1017b630005512cf57ad0e2ed0a3c6a3f1b0dbb"
31+
"baked_commit_ref": "35f6dc11bcfc7c3b7b19959009f0dc50a9b03e66"
3432
}
3533
}
3634
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
name: 🐛 Bug Report
33
about: Report a reproducible bug in the current release of nautobot-design-builder
4+
labels:
5+
- "type: bug"
46
---
57

68
### Environment

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
name: ✨ Feature Request
33
about: Propose a new feature or enhancement
4-
4+
labels:
5+
- "type: feature"
56
---
67

78
### Environment

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
strategy:
152152
fail-fast: true
153153
matrix:
154-
python-version: ["3.8"] # 3.12 stable is tested in unittest_report stage.
154+
python-version: ["3.9"] # 3.12 stable is tested in unittest_report stage.
155155
db-backend: ["postgresql"]
156156
nautobot-version: ["stable"]
157157
include:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Rebaked from the cookie `nautobot-app-v2.5.1`.

poetry.lock

Lines changed: 236 additions & 174 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ classifiers = [
1313
"Intended Audience :: Developers",
1414
"Development Status :: 5 - Production/Stable",
1515
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
@@ -28,7 +27,7 @@ packages = [
2827
]
2928

3029
[tool.poetry.dependencies]
31-
python = ">=3.8.1,<3.13"
30+
python = ">=3.9.2,<3.13"
3231
# Used for local development
3332
nautobot = ">=2.2.0,<3.0"
3433

@@ -44,10 +43,7 @@ ruff = "0.5.5"
4443
yamllint = "*"
4544
toml = "*"
4645
# Python implementation of markdownlint
47-
pymarkdownlnt = [
48-
{version = "0.9.26", python = "~3.8.0"},
49-
{version = "~0.9.29", python = ">=3.9,<3.13"},
50-
]
46+
pymarkdownlnt = "~0.9.29"
5147
Markdown = "*"
5248
# Render custom markdown for version added/changed/remove notes
5349
markdown-version-annotations = "1.0.1"

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def is_truthy(arg):
5252
namespace.configure(
5353
{
5454
"nautobot_design_builder": {
55-
"nautobot_ver": "2.3.1",
55+
"nautobot_ver": "2.4.2",
5656
"project_name": "nautobot-design-builder",
5757
"python_ver": "3.11",
5858
"local": False,

0 commit comments

Comments
 (0)