From dc0d9e6bf66840025bd8edbe5123d71a19c154df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:45:27 +0100 Subject: [PATCH 1/3] Bump jinja2 from 3.1.4 to 3.1.5 in /examples/docker-flask (#671) Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.4 to 3.1.5. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.5) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/docker-flask/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docker-flask/requirements.txt b/examples/docker-flask/requirements.txt index 84b0be9..1a9b0ae 100644 --- a/examples/docker-flask/requirements.txt +++ b/examples/docker-flask/requirements.txt @@ -4,7 +4,7 @@ blinker==1.6.2 click==8.1.3 Flask==2.3.2 itsdangerous==2.1.2 -Jinja2==3.1.4 +Jinja2==3.1.5 MarkupSafe==2.1.2 Pillow==10.3.0 pycups==2.0.1 From e39ec9e50dc025c7653f28b68df9132c8d756473 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:53:59 +0100 Subject: [PATCH 2/3] Bump codecov/codecov-action from 4 to 5 (#668) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/pythonpackage-windows.yml | 2 +- .github/workflows/pythonpackage.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage-windows.yml b/.github/workflows/pythonpackage-windows.yml index ff70f08..0929fb5 100644 --- a/.github/workflows/pythonpackage-windows.yml +++ b/.github/workflows/pythonpackage-windows.yml @@ -44,7 +44,7 @@ jobs: env: ESCPOS_CAPABILITIES_FILE: D:\a\python-escpos\python-escpos\capabilities-data\dist\capabilities.json - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index de29ef0..320063f 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -54,7 +54,7 @@ jobs: env: ESCPOS_CAPABILITIES_FILE: /home/runner/work/python-escpos/python-escpos/capabilities-data/dist/capabilities.json - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: From e383b7a3978cd6ebae1a51e1bcf2005e6b9c9bdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benito=20L=C3=B3pez?= Date: Fri, 21 Feb 2025 10:59:43 +0100 Subject: [PATCH 3/3] Fix wrong font choices (#676) Co-authored-by: Patrick Kanzler <4189642+patkan@users.noreply.github.com> --- src/escpos/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/escpos/cli.py b/src/escpos/cli.py index 92d11ed..9c274d7 100644 --- a/src/escpos/cli.py +++ b/src/escpos/cli.py @@ -373,7 +373,7 @@ ESCPOS_COMMANDS: List[Dict[str, Any]] = [ { "option_strings": ("--font",), "help": "Font choice", - "choices": ["left", "center", "right"], + "choices": ["A", "B"], }, { "option_strings": ("--text_type",),