Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mraniki/findmyorder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.22
Choose a base ref
...
head repository: mraniki/findmyorder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 6,874 additions and 783 deletions.
  1. +18 −0 .github/.pre-commit-config.yaml
  2. +0 −38 .github/ISSUE_TEMPLATE/bug_report.md
  3. +5 −8 .github/dependabot.yml
  4. +28 −0 .github/renovate.json
  5. +0 −3 .github/semantic.yml
  6. +12 −0 .github/workflows/pr.yml
  7. +0 −19 .github/workflows/pr_check.yml
  8. +0 −72 .github/workflows/☁️deploy.yml
  9. +0 −65 .github/workflows/🐍build.yml
  10. +27 −0 .github/workflows/👷Flow.yml
  11. +0 −52 .github/workflows/🔏Security.yml
  12. +0 −49 .github/workflows/🦎build_dev.yml
  13. +0 −59 .github/workflows/🧪test.yml
  14. +0 −29 .github/workflows/🧹cleanup.yml
  15. +143 −5 .gitignore
  16. +6 −0 .registry/.dockerignore
  17. +12 −0 .registry/Dockerfile
  18. +5 −0 .requirements/requirements.txt
  19. +4,959 −151 CHANGELOG.md
  20. +41 −39 README.md
  21. +14 −0 docs/.readthedocs.yaml
  22. +48 −0 docs/01_start.rst
  23. +12 −0 docs/02_config.rst
  24. +11 −0 docs/03_module.rst
  25. +20 −0 docs/Makefile
  26. +41 −0 docs/_static/custom.css
  27. BIN docs/_static/favicon.ico
  28. BIN docs/_static/favicon.png
  29. BIN docs/_static/logo-full.png
  30. BIN docs/_static/logo.png
  31. +34 −0 docs/_templates/custom-class-template.rst
  32. +66 −0 docs/_templates/custom-module-template.rst
  33. +165 −0 docs/conf.py
  34. +36 −0 docs/index.rst
  35. +0 −7 examples/Dockerfile
  36. 0 examples/__init__.py
  37. +25 −53 examples/example.py
  38. +0 −3 examples/requirements.txt
  39. +8 −4 findmyorder/__init__.py
  40. +20 −8 findmyorder/config.py
  41. +61 −4 findmyorder/default_settings.toml
  42. +9 −0 findmyorder/handler/__init__.py
  43. +124 −0 findmyorder/handler/_client.py
  44. +53 −0 findmyorder/handler/basic.py
  45. +91 −0 findmyorder/handler/standard.py
  46. +204 −77 findmyorder/main.py
  47. +193 −23 pyproject.toml
  48. +153 −15 tests/test_unit.py
  49. +39 −0 tests/test_unit_exception.py
  50. +60 −0 tests/test_unit_format_basic.py
  51. +131 −0 tests/test_unit_format_future.py
18 changes: 18 additions & 0 deletions .github/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.292
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: trailing-whitespace

- repo: https://github.com/PyCQA/bandit
rev: '1.7.5'
hooks:
- id: bandit
args: ["-c", "pyproject.toml"]
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

13 changes: 5 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for npm

# Maintain dependencies for poetry
- package-ecosystem: "pip"
directory: "/"
target-branch: "dev"
schedule:
interval: "weekly"
commit-message:
prefix: "⬆️ 🤖 Dependencies"
28 changes: 28 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommitTypeAll(⬆️ 🛠️)",
":disableDependencyDashboard"
],
"gitIgnoredAuthors": ["githubaction@githubaction.com","github-actions[bot]","8766259+mraniki@users.noreply.github.com"],
"semanticCommits": "enabled",
"labels": ["dependencies"],
"baseBranches": ["dev"],
"packageRules": [
{
"matchManagers": ["pip_requirements"],
"enabled": false
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchUpdateTypes": ["major"],
"automerge": false,
"minimumReleaseAge": "30 days"
}
]
}
3 changes: 0 additions & 3 deletions .github/semantic.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: ⛙pr


on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
autopr:
uses: mraniki/coding_toolset/.github/workflows/⛙pr.yml@main
secrets: inherit
19 changes: 0 additions & 19 deletions .github/workflows/pr_check.yml

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/☁️deploy.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/🐍build.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/👷Flow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 👷Flow

on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
merge_group:

jobs:
lint:
uses: mraniki/coding_toolset/.github/workflows/🦺Lint.yml@main
secrets: inherit
test:
needs: [lint]
uses: mraniki/coding_toolset/.github/workflows/🧪Test.yml@main
secrets: inherit
build:
needs: [lint]
uses: mraniki/coding_toolset/.github/workflows/🐍Build.yml@main
secrets: inherit
release:
needs: [build, test]
uses: mraniki/coding_toolset/.github/workflows/📦Release.yml@main
secrets: inherit


52 changes: 0 additions & 52 deletions .github/workflows/🔏Security.yml

This file was deleted.

Loading