Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Compare
Choose a tag to compare
Loading
@dmitry-shibanov dmitry-shibanov released this 28 Feb 10:30
· 294 commits to main since this release
0ebf233

What's Changed

  • Update default runtime to node16 (#340)
  • Update package-lock.json file version to 2, @types/node to 16.11.25 and typescript to 4.2.3 (#341)
  • Remove legacy pypy2 and pypy3 keywords (#342)

Breaking Changes

With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.

This new major release removes support of legacy pypy2 and pypy3 keywords. Please use more specific and flexible syntax to specify a PyPy version:

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version:
        - 'pypy-2.7' # the latest available version of PyPy that supports Python 2.7
        - 'pypy-3.8' # the latest available version of PyPy that supports Python 3.8
        - 'pypy-3.8-v7.3.8' # Python 3.8 and PyPy 7.3.8
    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v3
      with:
        python-version: ${{ matrix.python-version }}

See more usage examples in the documentation

Morty Proxy This is a proxified and sanitized view of the page, visit original site.