Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.3.0 #79

Merged
merged 44 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
44afda0
prepares release 0.2.1 (#54)
Kircheneer Sep 18, 2023
829ebb5
Fix RTD docs build (#58)
cmsirbu Sep 20, 2023
67b7438
Update CODEOWNERS (#68)
cmsirbu Nov 7, 2023
d870d3c
chore: Standardize dev and ci
snaselj Jan 25, 2024
12b7d40
fix: pytest
snaselj Jan 25, 2024
8c16171
fix: Removed changelog test
snaselj Jan 25, 2024
6371b38
fix: Python 3.8 importlib resources
snaselj Jan 25, 2024
00a6442
fix: Revert codeowners
snaselj Jan 25, 2024
e1990a6
fix: Cleanup
snaselj Jan 25, 2024
1fa6517
fix: ci
snaselj Jan 25, 2024
8606ef2
fix: CI warnings
snaselj Jan 25, 2024
abb39de
fix: Read nautobot version from poetry.lock or environment
snaselj Jan 25, 2024
d624f38
fix: Formatting
snaselj Jan 25, 2024
4fdfced
chore: Cleanup
snaselj Jan 26, 2024
884beac
fix: More specific yamllint rules
snaselj Jan 26, 2024
9d2de30
fix: Remove duplicate deps
snaselj Jan 29, 2024
e774bef
Merge pull request #71 from nautobot/u/snaselj-napps-200-standardize
snaselj Jan 29, 2024
56cc6bb
Use Fields __all__ (#70)
snaselj Feb 6, 2024
992097b
feat: Limit tests with version constraints
snaselj Feb 9, 2024
1dc945e
chore: Don't check ignored `/var`
snaselj Feb 9, 2024
1be2676
feat: Check sub class names
snaselj Feb 9, 2024
33603b8
chore: Fix test versions
snaselj Feb 9, 2024
a591a4d
fix: "version" => "versions"
snaselj Feb 12, 2024
8dc535d
feat: Use version constraints in individual test cases
snaselj Feb 12, 2024
6467cb3
chore: Ignore `/var` directory
snaselj Feb 12, 2024
8c3d4d7
feat: Added `--pull` option for `invoke build`
snaselj Feb 12, 2024
d0517b3
Merge pull request #75 from nautobot/u/snaselj-versions-tests
snaselj Feb 12, 2024
6c08f61
Merge remote-tracking branch 'origin/develop' into u/snaselj-napps-20…
snaselj Feb 12, 2024
8fb4bb0
feat: Sub Class Name classes and testing
snaselj Feb 13, 2024
574fe3e
Improve incorrect base class checker (#72)
snaselj Feb 14, 2024
8351a02
fix: Use unique pylint ID
snaselj Feb 15, 2024
cec95d5
Merge pull request #74 from nautobot/u/snaselj-napps-208-subclass-names
snaselj Feb 19, 2024
784b572
fix: Failing sub-class-name rule for `model = models.MyModel`
snaselj Feb 19, 2024
430779f
fix: Tests lineno
snaselj Feb 19, 2024
87b6634
fix: Add comments
snaselj Feb 19, 2024
2f9d93f
Merge pull request #76 from nautobot/u/snaselj-fix-viewset
snaselj Feb 19, 2024
e051565
fix: Failing check on Golden Config for missing model
snaselj Mar 1, 2024
be882f9
fix: Formatting
snaselj Mar 1, 2024
17a8a5b
fix: Bump importlib-resources ">=6.0.0" => ">=5.12.0" to keep backwar…
snaselj Mar 4, 2024
4402aaf
chore: Bump package version `0.2.2b1`
snaselj Mar 4, 2024
11ca12f
Merge pull request #78 from nautobot/u/snaselj-fix-deps
Kircheneer Mar 4, 2024
baefb71
Merge pull request #77 from nautobot/u/snaselj-fix-gc-missing-model
Kircheneer Mar 5, 2024
4aedc7e
Prepares release 0.3.0
Kircheneer Mar 5, 2024
3d493e2
Merge branch 'main' of https://github.com/nautobot/pylint-nautobot in…
Kircheneer Mar 11, 2024
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
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"project_name": "Pylint Nautobot",
"project_slug": "pylint-nautobot",
"project_python_name": "pylint_nautobot",
"project_python_base_version": "3.7",
"project_python_base_version": "3.8",
"project_with_config_settings": "yes",
"generate_docs": "no",
"version": "0.1.0",
Expand Down
3 changes: 0 additions & 3 deletions .env.example

This file was deleted.

9 changes: 5 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[flake8]
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
# W503: Black disagrees with this rule, as does PEP 8; Black wins
ignore = E501, W503
exclude =
ignore =
E501, # Line length is enforced by Black, so flake8 doesn't need to check it
W503 # Black disagrees with this rule, as does PEP 8; Black wins
exclude =
__pycache__,
.venv,
tests/inputs
var
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owner(s) of all files in this repository
* @cmsirbu @Kircheneer @nautobot/maintain-core
* @cmsirbu @Kircheneer @nautobot/maintain-nautobot-apps
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ about: Report a reproducible bug in the current release of pylint-nautobot
---

### Environment
* Python version: <!-- Example: 3.7.7 -->
* Python version: <!-- Example: 3.11.4 -->
* Nautobot version: <!-- Example: 2.0.0 -->
* pylint-nautobot version: <!-- Example: 1.0.0 -->

<!-- What did you expect to happen? -->
Expand All @@ -21,4 +22,4 @@ about: Report a reproducible bug in the current release of pylint-nautobot
### Steps to Reproduce
1.
2.
3.
3.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ about: Propose a new feature or enhancement
---

### Environment
* Nautobot version: <!-- Example: 2.0.0 -->
* pylint-nautobot version: <!-- Example: 1.0.0 -->

<!--
Expand Down
38 changes: 31 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
## New Pull Request
<!--
Thank you for your interest in contributing to pylint-nautobot! Please note
that our contribution policy recommends that a feature request or bug
report be opened for approval prior to filing a pull request. This
helps avoid wasting time and effort on something that we might not
be able to accept.

Have you:
- [ ] Updated the README if necessary?
- [ ] Updated any configuration settings?
- [ ] Written a unit test?
Please indicate the relevant feature request or bug report below.
-->

## Change Notes
# Closes: #<ISSUE NUMBER GOES HERE>

## Justification
## What's Changed

<!--
Please include:
- A summary of the proposed changes
- A sectioned breakdown for larger features under ## subheadings
- Screenshots, example payloads where relevant:
- Before/After for bugfixes
- Using a new feature
-->

## To Do

<!--
Please feel free to update todos to keep track of your own notes for WIP PRs.
-->
- [ ] Explanation of Change(s)
- [ ] Attached Screenshots, Payload Example
- [ ] Unit, Integration Tests
- [ ] Documentation Updates (when adding/changing features)
- [ ] Example App Updates (when adding/changing features)
- [ ] Outline Remaining Work, Constraints from Design
Loading