Skip to content

Releases: jakebailey/pyright-action

v2.3.1

12 Apr 17:09
Compare
Choose a tag to compare
  • More permissively parse version (f6c9e3a)
  • Update deps (5859d5b)
  • Fix missing snapshot changes (bf320e1)
  • Downgrade semver to only have one version in output (4d9d35d)
  • Be stricter about passing around SemVers (5b6fc84)

v2.3.0

11 Apr 05:15
Compare
Choose a tag to compare

This version adds support for version: PATH; this configures pyright-action to use pyright from $PATH, which may be more convenient if you are already installing pyright via something like the PyPI package. For example:

- run: |
    python -m venv .venv
    source .venv/bin/activate
    pip install -r dev-requirements.txt # includes pyright
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH

- uses: jakebailey/pyright-action@v2
  with:
    version: PATH

 

v2.2.1

29 Feb 00:51
Compare
Choose a tag to compare
  • Stop warning about python-version and python-platform in 1.1.352+ (c4eaa8c)

v2.2.0

28 Feb 19:01
Compare
Choose a tag to compare

This adds a new annotate input, replacing no-comment. Examples:

# Disable annotations.
with:
  annotate: none
  # - or -
  annotate: false

# Annotate only errors, not warnings.
with:
  annotate: errors

# Annotate everything (the default)
with:
  annotate: all
  # - or -
  annotate: true

no-comment still works, and overrides annotate if set to true.

  • Add 'annotate' input, replacing 'no-comment' (93a05d0)
  • Smoke test on all OSs (328130c)
  • Pin GHA (ce41ade)
  • Update codecov/codecov-action digest to 54bcd87 (#87) (ac09533)

v2.1.2

27 Feb 16:07
Compare
Choose a tag to compare
  • Handle case where --project is not json (f84ea8a)

v2.1.1

27 Feb 15:42
Compare
Choose a tag to compare

This fixes a crash introduced in v2.1.0. Super sorry about that!

(I now have testing which should catch these kinds of problems earlier.)

  • Work around jsonc-parser bunding bug (80810b2)
  • Add smoke test in CI (46ce6ef)

v2.1.0

27 Feb 04:12
Compare
Choose a tag to compare

This version crashes; DO NOT USE!

  • Use a posix join to make windows test more closely (3ca0e68)
  • Print a warning when passing a flag that will be ignored due to a config file (89f12e1)
  • Update deps (96385a0)
  • Ignore coverage of entrypoint (7aad7a1)

v2.0.2

23 Feb 23:18
Compare
Choose a tag to compare

v2.0.1

17 Jan 19:52
Compare
Choose a tag to compare

This is a major version release. This bumps the minimum node version for the action to node20, which has been out for a while.

v1.8.1

08 Dec 19:37
Compare
Choose a tag to compare