Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/2.10.3+lastfm #1

Open
wants to merge 36 commits into
base: master
Choose a base branch
from

Commits on May 6, 2019

  1. Configuration menu
    Copy the full SHA
    2fb7a4a View commit details
    Browse the repository at this point in the history
  2. fixes pallets#242, deletes link to Jinja 1 docs.

    This just fixes a broken link by deleteing it.
    
    I'm assuming Jinja 1 docs. aren't readily available anymore.
    I looked for a git tag for version 1 as an alternative target,
    but didn't see that either.
    brownterryn committed May 6, 2019
    Configuration menu
    Copy the full SHA
    6373e25 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2019

  1. Add new maintenance branch format to Travis (pallets#987)

    * Added new maintenance branch format to Travis
    
    The maintenance branch format appeared to change from
    `[version]-maintenance` to `[version].x` in the recent months, and
    this broke Travis CI builds made to those branches. Because they
    no longer meet the branch regex, the pull requests builds against
    these branches were no longer being run.
    
    This ads the regex for any branch which ends in `.x`, which should
    catch the new pattern for maintenance branches.
    
    * Use the branch regex from werkzeug
    
    This is more specific to only catch version number branches.
    
    * Sync with master
    
    Apparently the build configuration for this branch is very old and doesn't match master at all.
    kevin-brown authored and davidism committed May 7, 2019
    Configuration menu
    Copy the full SHA
    323e892 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2019

  1. Merge pull request pallets#988 from tbnorth/triv_docs_link

    fixes pallets#242, deletes link to Jinja 1 docs.
    kevin-brown authored May 11, 2019
    Configuration menu
    Copy the full SHA
    67e2542 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2019

  1. Configuration menu
    Copy the full SHA
    e632dc5 View commit details
    Browse the repository at this point in the history
  2. docs: Python3-ize the examples

    This commit updates the examples to conform to Python 3 instead
    of Python 2, as Python 3 is more acceptable these days.
    dvamin committed May 31, 2019
    Configuration menu
    Copy the full SHA
    4965fac View commit details
    Browse the repository at this point in the history
  3. Merge pull request pallets#1010 from dvamin/master

    docs: Python3-ize the examples
    davidism authored May 31, 2019
    Configuration menu
    Copy the full SHA
    7a6f97c View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2019

  1. Configuration menu
    Copy the full SHA
    273d8b1 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2019

  1. Merge pull request pallets#1012 from yongbozhang/issue-423

    Remind not to put block in if statements in doc
    jab authored Jun 6, 2019
    Configuration menu
    Copy the full SHA
    22e0bfc View commit details
    Browse the repository at this point in the history
  2. Merge pull request pallets#1009 from shamsimam/doc-python-methods

    adds documentation on use of python methods in expressions
    jab authored Jun 6, 2019
    Configuration menu
    Copy the full SHA
    4ce2449 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2019

  1. Import abstract base classes from collections.abc

    In Python 3.7, importing ABCs directly from the `collections` module shows a
    warning (and in Python 3.8 it will stop working) - see
    python/cpython@c66f9f8
    
    This fixes various DeprecationWarnings such as those:
    
    ```
    .../jinja2/utils.py:485: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
      from collections import MutableMapping
    
    .../jinja2/runtime.py:318: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
      from collections import Mapping
    ```
    The-Compiler authored and jbarreneche committed Jun 18, 2019
    Configuration menu
    Copy the full SHA
    593ee1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4b1cae9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request pallets#1019 from jbarreneche/backport-python3.7-c…

    …ollections-warning-fix
    
    Backport python3.7 collections warning fix
    davidism authored Jun 18, 2019
    Configuration menu
    Copy the full SHA
    0f5f201 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2019

  1. Configuration menu
    Copy the full SHA
    d04d999 View commit details
    Browse the repository at this point in the history
  2. ignore coverage parse errors

    Azure has Python 2.7.15 and Python 3.5.5, which can't parse async code.
    Later patch versions can parse it fine, so this can be removed if
    Azure updates.
    davidism committed Jul 20, 2019
    Configuration menu
    Copy the full SHA
    94cecd4 View commit details
    Browse the repository at this point in the history
  3. Register custom test category markers.

    Since around pytest 3.6 it's been possible to register custom
    markers, and since version 4.5.0 pytest warns about any which
    are not registered. Register a list of such markers, extracted
    from those warnings, so they don't clutter the test output.
    rillian authored and davidism committed Jul 20, 2019
    Configuration menu
    Copy the full SHA
    c61b366 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6661be0 View commit details
    Browse the repository at this point in the history
  5. Merge pull request pallets#1030 from rillian/PytestUnknownMarkWarning

    Fix pytest unknown mark warnings
    davidism authored Jul 20, 2019
    Configuration menu
    Copy the full SHA
    e74640b View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2019

  1. sandbox uses xrange on Python 2

    pbjr23 authored and davidism committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    35fcd9f View commit details
    Browse the repository at this point in the history
  2. Merge pull request pallets#986 from pbjr23/fix-safe-range-memory

    Fix memory usage bug in Python 2 by using correct version of range
    davidism authored Jul 22, 2019
    Configuration menu
    Copy the full SHA
    219b8a3 View commit details
    Browse the repository at this point in the history
  3. Merge pull request pallets#981 from pwlandoll/2.10.x

    Add Links section to README
    davidism authored Jul 22, 2019
    Configuration menu
    Copy the full SHA
    5b2b7ca View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2019

  1. Configuration menu
    Copy the full SHA
    f77b09d View commit details
    Browse the repository at this point in the history
  2. fix linkcheck issues

    davidism committed Jul 26, 2019
    Configuration menu
    Copy the full SHA
    0669656 View commit details
    Browse the repository at this point in the history
  3. reformat readme

    davidism committed Jul 26, 2019
    Configuration menu
    Copy the full SHA
    90756da View commit details
    Browse the repository at this point in the history
  4. Merge pull request pallets#1042 from pallets/docs

    modernize docs, 2.9.x branch
    davidism authored Jul 26, 2019
    Configuration menu
    Copy the full SHA
    908726c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    288dd42 View commit details
    Browse the repository at this point in the history
  6. fix tox docs build

    davidism committed Jul 26, 2019
    Configuration menu
    Copy the full SHA
    d601b3f View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2019

  1. Fix TracebackFrameProxy.set_next() on Python 3.7

    Fix issue pallets#1050: fix a crash in TracebackFrameProxy.set_next() on
    Python 3.7 and newer, when Python is build in debug mode.
    
    Since Python 3.7, traceback.tb_next field can be modified: ctypes is
    no longer needed.
    vstinner authored and davidism committed Sep 4, 2019
    Configuration menu
    Copy the full SHA
    3a86ef3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request pallets#1051 from vstinner/tb_next_py37

    Fix TracebackFrameProxy.set_next() on Python 3.7
    davidism authored Sep 4, 2019
    Configuration menu
    Copy the full SHA
    72fffe4 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. update project metadata

    davidism committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    65da441 View commit details
    Browse the repository at this point in the history
  2. release version 2.10.2

    davidism committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    0fee409 View commit details
    Browse the repository at this point in the history
  3. Fix typo in setup.py

    ThiefMaster authored Oct 4, 2019
    Configuration menu
    Copy the full SHA
    218e77d View commit details
    Browse the repository at this point in the history
  4. release version 2.10.3

    davidism committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    c6a71f9 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2021

  1. Always include context in macros

    tdhooper authored and johngeoffrey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    5aa1ae5 View commit details
    Browse the repository at this point in the history
  2. Bump version to 2.10.3+lastfm

    tdhooper authored and johngeoffrey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    739b634 View commit details
    Browse the repository at this point in the history
  3. Add Jenkins file

    2.10.3+lastfm
    johngeoffrey committed Apr 23, 2021
    Configuration menu
    Copy the full SHA
    0df4343 View commit details
    Browse the repository at this point in the history