Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: tiangolo/typer-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d8256864ba5a7ca703144ea5793513c14b8a25d9
Choose a base ref
..
head repository: tiangolo/typer-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 408ce0249c5968c48ceaf09592b518b0e3a21f09
Choose a head ref
Showing with 25 additions and 5 deletions.
  1. +13 −3 .github/workflows/latest-changes.yml
  2. +10 −0 release-notes.md
  3. +2 −2 requirements.txt
16 changes: 13 additions & 3 deletions .github/workflows/latest-changes.yml
Original file line number Diff line number Diff line change
@@ -14,17 +14,27 @@ on:
debug_enabled:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
default: ''

jobs:
latest-changes:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# To allow latest-changes to commit to master
token: ${{ secrets.ACTIONS_TOKEN }}
# Allow debugging with tmate
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
with:
limit-access-to-actor: true
token: ${{ secrets.ACTIONS_TOKEN }}
standard_token: ${{ secrets.GITHUB_TOKEN }}
- uses: docker://tiangolo/latest-changes:0.0.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest_changes_file: docs/en/docs/release-notes.md
latest_changes_file: release-notes.md
latest_changes_header: '## Latest Changes\n\n'
debug_logs: true
10 changes: 10 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,9 @@

## Latest Changes

* ⬆️ Update pytest-cov requirement from ^2.8.1 to ^4.0.0. PR [#76](https://github.com/tiangolo/typer-cli/pull/76) by [@dependabot[bot]](https://github.com/apps/dependabot).
* ⬆️ Update mypy requirement from ^0.910 to ^1.0. PR [#83](https://github.com/tiangolo/typer-cli/pull/83) by [@dependabot[bot]](https://github.com/apps/dependabot).


## 0.0.13

@@ -11,6 +14,13 @@

### Internal

* 💚 Fix latest-changes GitHub Action, strike two ⚾. PR [#97](https://github.com/tiangolo/typer-cli/pull/97) by [@tiangolo](https://github.com/tiangolo).
* 💚 Fix latest-changes release notes GitHub Action. PR [#96](https://github.com/tiangolo/typer-cli/pull/96) by [@tiangolo](https://github.com/tiangolo).
* 📝 Update badges on README. PR [#94](https://github.com/tiangolo/typer-cli/pull/94) by [@tiangolo](https://github.com/tiangolo).
* 👷 Tweak latest-changes GitHub Action when running as a workflow dispatch. PR [#98](https://github.com/tiangolo/typer-cli/pull/98) by [@tiangolo](https://github.com/tiangolo).
* ⬆️ Enable tests and classifiers for Python 3.11. PR [#95](https://github.com/tiangolo/typer-cli/pull/95) by [@tiangolo](https://github.com/tiangolo).
* 👷 Migrate CI coverage to Smokeshow and include alls-green. PR [#93](https://github.com/tiangolo/typer-cli/pull/93) by [@tiangolo](https://github.com/tiangolo).
* 👷 Upgrade GitHub Actions, add funding config. PR [#92](https://github.com/tiangolo/typer-cli/pull/92) by [@tiangolo](https://github.com/tiangolo).
* 👷 Upgrade Dependabot, include GitHub Actions. PR [#86](https://github.com/tiangolo/typer-cli/pull/86) by [@tiangolo](https://github.com/tiangolo).
* ♻️ Refactor build system to use Hatch instead of Poetry. PR [#85](https://github.com/tiangolo/typer-cli/pull/85) by [@tiangolo](https://github.com/tiangolo).
* ⬆️ Update flake8 requirement from ^3.7.9 to ^4.0.1. PR [#52](https://github.com/tiangolo/typer-cli/pull/52) by [@dependabot[bot]](https://github.com/apps/dependabot).
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

# Test
pytest == 7.0.1
pytest-cov == 2.10.1
pytest-cov == 4.0.0
pytest-xdist == 3.2.0
pytest-sugar == 0.9.2

# Format and lint
black == 22.3
mypy == 0.910
mypy == 1.0.0
flake8 == 4.0.1
isort == 5.0.6
autoflake == 1.3.1