-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from nautobot/develop
2.0 release prep
- Loading branch information
Showing
42 changed files
with
1,332 additions
and
1,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "\\", | ||
"full_name": "Network to Code, LLC", | ||
"email": "info@networktocode.com", | ||
"github_org": "nautobot", | ||
"plugin_name": "nautobot_floor_plan", | ||
"verbose_name": "Nautobot Floor Plan", | ||
"plugin_slug": "nautobot-floor-plan", | ||
"project_slug": "nautobot-plugin-floor-plan", | ||
"repo_url": "https://github.com/nautobot/nautobot-plugin-floor-plan", | ||
"base_url": "floor-plan", | ||
"min_nautobot_version": "1.5.0", | ||
"max_nautobot_version": "1.9999", | ||
"nautobot_version": "latest", | ||
"camel_name": "FloorPlan", | ||
"project_short_description": "Nautobot Floor Plan", | ||
"version": "0.1.0", | ||
"model_class_name": "FloorPlan", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/floor-plan/en/latest", | ||
"_drift_manager": { | ||
"template": "https://github.com/networktocode-llc/cookiecutter-ntc.git", | ||
"template_dir": "nautobot-plugin", | ||
"template_ref": "nautobot-plugin-v1.0", | ||
"cookie_dir": "", | ||
"branch_prefix": "drift-manager" | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "\\", | ||
"full_name": "Network to Code, LLC", | ||
"email": "info@networktocode.com", | ||
"github_org": "nautobot", | ||
"plugin_name": "nautobot_floor_plan", | ||
"verbose_name": "Nautobot Floor Plan", | ||
"plugin_slug": "nautobot-floor-plan", | ||
"project_slug": "nautobot-plugin-floor-plan", | ||
"repo_url": "https://github.com/nautobot/nautobot-plugin-floor-plan", | ||
"base_url": "floor-plan", | ||
"min_nautobot_version": "1.5.0", | ||
"max_nautobot_version": "1.9999", | ||
"nautobot_version": "latest", | ||
"camel_name": "FloorPlan", | ||
"project_short_description": "Nautobot Floor Plan", | ||
"version": "0.1.0", | ||
"model_class_name": "FloorPlan", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/floor-plan/en/latest", | ||
"_drift_manager": { | ||
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", | ||
"template_dir": "nautobot-app", | ||
"template_ref": "develop", | ||
"cookie_dir": "", | ||
"branch_prefix": "drift-manager" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: "Rebake Cookie" | ||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
# Every Saturday at 5:00 am UTC | ||
- cron: "0 5 * * 6" | ||
workflow_dispatch: | ||
inputs: | ||
template-ref: | ||
description: "The branch or tag to use for the template, using the value from .cookiecutter.json when empty" | ||
default: "" | ||
jobs: | ||
rebake: | ||
runs-on: "ubuntu-22.04" | ||
permissions: | ||
actions: "write" | ||
contents: "write" | ||
packages: "read" | ||
pull-requests: "write" | ||
container: "ghcr.io/nautobot/cookiecutter-nautobot-app-drift-manager/prod:latest" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
steps: | ||
- name: "Configure" | ||
id: "config" | ||
run: | | ||
export REBAKE_ARGS='--push' | ||
if [[ ${{ github.event_name }} == 'workflow_dispatch' ]]; then | ||
export REBAKE_ARGS="$REBAKE_ARGS --template-ref='${{ github.event.inputs.template-ref }}'" | ||
fi | ||
echo "rebake-args='$REBAKE_ARGS'" >> $GITHUB_OUTPUT | ||
- name: "Rebake" | ||
run: | | ||
python -m ntc_cookie_drift_manager rebake ${{ steps.config.outputs.rebake-args }} '${{ github.repositoryUrl }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,3 +306,6 @@ invoke.yml | |
docs/README.md | ||
docs/CHANGELOG.md | ||
public | ||
/compose.yaml | ||
/dump.sql | ||
/nautobot_floor_plan/static/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ rules: | |
quote-type: "double" | ||
ignore: | | ||
.venv/ | ||
compose.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# v2.0 Release Notes | ||
|
||
This document describes all new features and changes in the release `2.0`. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## Release Overview | ||
|
||
Updated `nautobot` to `2.0.0`. | ||
|
||
## [v2.0.0] - 2023-09-29 | ||
|
||
### Changed | ||
|
||
- Updated `nautobot` to `2.0.0`. | ||
- Renamed `tag` to `tags` filter field for both, `FloorPlan` and `FloorPlanTile` filters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
griffe==0.30.1 | ||
mkdocs==1.3.1 | ||
mkdocs-material==8.4.2 | ||
mkdocs==1.4.3 | ||
mkdocs-material==9.1.15 | ||
mkdocstrings==0.22.0 | ||
mkdocstrings-python==1.1.2 | ||
mkdocs-version-annotations==1.0.0 |
Oops, something went wrong.