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

Meta python merge #364

Closed
wants to merge 20 commits into from
Closed

Meta python merge #364

wants to merge 20 commits into from

Commits on May 28, 2021

  1. python3-xmlschema: Upgrade 1.6.1 -> 1.6.2

    Upgrade to release 1.6.2:
    
    - Fix for issue key/keyref with dynamic types
    - Change default decoding of mixed content with only text to a
      string instead of a dictionary
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    93a9c10 View commit details
    Browse the repository at this point in the history
  2. python3-websocket-client: Upgrade 1.0.0 -> 1.0.1

    Upgrade to release 1.0.1:
    
    - Fix exception handling bug
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    45a7db7 View commit details
    Browse the repository at this point in the history
  3. python3-alembic: Upgrade 1.6.2 -> 1.6.4

    Upgrade to release 1.6.4:
    
    - Fixed regression caused by just fixed bug that scaled back the
      filter for unique=True/index=True too far such that these
      directives no longer worked for the op.create_table() op, this
      has been fixed.
    - Fixed 1.6-series regression where UniqueConstraint and to a
      lesser extent Index objects would be doubled up in the generated
      model when the unique=True / index=True flags were used.
    - Fixed a bug where paths defined in post-write hook options would
      be wrongly escaped in non posix environment (Windows).
    - Fixed regression where a revision file that contained its own
      down revision as a dependency would cause an endless loop in the
      traversal logic.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    0bef346 View commit details
    Browse the repository at this point in the history
  4. python3-sqlalchemy: Upgrade 1.4.11 -> 1.4.15

    Upgrade to release 1.4.15:
    
    - A new approach has been applied to the warnings system in
      SQLAlchemy to accurately predict the appropriate stack level for
      each warning dynamically. This allows evaluating the source of
      SQLAlchemy-generated warnings and deprecation warnings to be
      more straightforward as the warning will indicate the source
      line within end-user code, rather than from an arbitrary level
      within SQLAlchemy’s own source code.
    
    orm:
    - Fixed additional regression caused by “eager loaders run on
      unexpire” feature #1763 where the feature would run for a
      contains_eager() eagerload option in the case that the
      contains_eager() were chained to an additional eager loader
      option, which would then produce an incorrect query as the
      original query-bound join criteria were no longer present.
    - Fixed issue in subquery loader strategy which prevented caching
      from working correctly. This would have been seen in the logs as
      a “generated” message instead of “cached” for all subqueryload
      SQL emitted, which by saturating the cache with new keys would
      degrade overall performance; it also would produce “LRU size
      alert” warnings.
    
    sql:
    - Adjusted the logic added as part of #6397 in 1.4.12 so that
      internal mutation of the BindParameter object occurs within the
      clause construction phase as it did before, rather than in the
      compilation phase. In the latter case, the mutation still
      produced side effects against the incoming construct and
      additionally could potentially interfere with other internal
      mutation routines.
    
    mysql:
    - Added support for the ssl_check_hostname= parameter in mysql
      connection URIs and updated the mysql dialect documentation
      regarding secure connections. Original pull request courtesy of
      Jerry Zhao.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    45c3327 View commit details
    Browse the repository at this point in the history
  5. python3-prettytable: add python3-sqlite3 for ptest

    Add python3-sqlite3 to ptest RDEPENDS.
    
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    b02a638 View commit details
    Browse the repository at this point in the history
  6. python3-flask-migrate: Upgrade 2.7.0 -> 3.0.0

    Upgrade to release 3.0.0:
    
    - Remove support for Flask-Script
    - Use unittest testrunner
    - Remove dependency on six package
    - Added sphinx build files to .gitignore file
    - Fix Sphinx warning
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    83af587 View commit details
    Browse the repository at this point in the history
  7. python3-flask: Upgrade 1.1.2 -> 2.0.1

    Upgrade to release 2.0.1:
    
    - Re-add the filename parameter in send_from_directory. The
      filename parameter has been renamed to path, the old name is
      deprecated.
    - Mark top-level names as exported so type checking understands
      imports in user projects.
    - Fix type annotation for g and inform mypy that it is a namespace
      object that has arbitrary attributes.
    - Fix some types that weren’t available in Python 3.6.0.
    - Improve typing for send_file, send_from_directory, and
      get_send_file_max_age.
    - Show an error when a blueprint name contains a dot. The . has
      special meaning, it is used to separate (nested) blueprint names
      and the endpoint name.
    - Combine URL prefixes when nesting blueprints that were created
      with a url_prefix value.
    - Roll back a change to the order that URL matching was done. The
      URL is again matched after the session is loaded, so the session
      is available in custom URL converters.
    - Re-add deprecated Config.from_json, which was accidentally
      removed early.
    - Improve typing for some functions using Callable in their type
      signatures, focusing on decorator factories.
    - Nested blueprints are registered with their dotted name. This
      allows different blueprints with the same name to be nested at
      different locations.
    - register_blueprint takes a name option to change the (pre-dotted)
      name the blueprint is registered with. This allows the same
      blueprint to be registered multiple times with unique names for
      url_for. Registering the same blueprint with the same name
      multiple times is deprecated. #1091
    - Improve typing for stream_with_context.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    8ec5a96 View commit details
    Browse the repository at this point in the history
  8. python3-flask-wtf: Upgrade 0.14.3 -> 0.15.1

    Upgrade to release 0.15.1:
    
    - Add python_requires metadata to avoid installing on unsupported
      Python versions.
    - Drop support for Python < 3.6.
    - FileSize validator.
    - Extra requirement email installs the email_validator package.
    - Fixed Flask 2.0 warnings.
    - Various documentation fixes.
    - Various CI fixes.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    879f71e View commit details
    Browse the repository at this point in the history
  9. python3-flask-socketio: Upgrade 5.0.1 -> 5.0.3

    Upgrade to release 5.0.3:
    
    - Document the use of simple-websocket with the development web
      server
    - Show transport in example apps
    - Added Open Collective funding option
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    3202f7e View commit details
    Browse the repository at this point in the history
  10. python3-werkzeug: Upgrade 1.0.1 -> 2.0.1

    Upgrade to release 2.0.1:
    
    - Fix type annotation for send_file max_age callable. Don't pass
      pathlib.Path to max_age.
    - Mark top-level names as exported so type checking understands
      imports in user projects.
    - Fix some types that weren't available in Python 3.6.0.
    - cached_property is generic over its return type, properties
      decorated with it report the correct type.
    - Fix multipart parsing bug when boundary contains special regex
      characters.
    - Type checking understands that calling headers.get with a string
      default will always return a string.
    - If HTTPException.description is not a string, get_description
      will convert it to a string.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    9eb2ca4 View commit details
    Browse the repository at this point in the history
  11. python3-bidict: Add recipe

    Add bidict, the bidirectional mapping library for Python.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    29b7bd1 View commit details
    Browse the repository at this point in the history
  12. python3-socketio: Upgrade 5.1.0 -> 5.3.0

    Upgrade to release 5.3.0:
    
    - Document WebSocket support for threading mode
    - Allow functions to be used for URL, headers and auth data in
      client connection
    - Emit events to multiple rooms
    - More descriptive error when joining a room on a bad namespace
    - Document the use of arguments in the connect_error handler
    - Document that callbacks cannot be used in external processes
    - Improve start_background_task() example in the documentation
    - Added Open Collective funding option
    - Remove Python 2 from PyPI classifiers
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    247493d View commit details
    Browse the repository at this point in the history
  13. python3-robotframework: Upgrade 4.0.2 -> 4.0.3

    Upgrade to release 4.0.3:
    
    - Regression using TypedDict as type hint
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    c9003dc View commit details
    Browse the repository at this point in the history
  14. python3-flask-restful: Upgrade 0.3.8 -> 0.3.9

    Upgrade to release 0.3.9:
    
    - Compatibility with Flask 2.0
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    656cfb6 View commit details
    Browse the repository at this point in the history
  15. python3-pysonos: Upgrade 0.0.49 -> 0.0.50

    Upgrade to release 0.0.50:
    
    - Add ShareLink plugin
    - Revert some fixes
    - Merge current SoCo master
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    6c2506c View commit details
    Browse the repository at this point in the history
  16. python3-aenum: Upgrade 3.0.0 -> 3.1.0

    Upgrade to release 3.1.0:
    
    - AddValue is similar to the old AutoNumber: it will always
      activate, but uses _generate_next_value_ to get the next value
      (so the user has some control over the return data type instead
      of always getting an int).
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    7239fbf View commit details
    Browse the repository at this point in the history
  17. python3-pyscaffold: Upgrade 4.0.1 -> 4.0.2

    Upgrade to release 4.0.2:
    
    - Restructured docs
    - Fix WSL2 installation problem
    - Fix for interactive mode under Windows
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    c9923ed View commit details
    Browse the repository at this point in the history
  18. python3-urllib3: Upgrade 1.26.4 -> 1.26.5

    Upgrade to release 1.26.5:
    
    - Fixed deprecation warnings emitted in Python 3.10.
    - Updated vendored six library to 1.16.0.
    - Improved performance of URL parser when splitting the authority
      component.
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    3128c5a View commit details
    Browse the repository at this point in the history
  19. python3-tqdm: Upgrade 4.60.0 -> 4.61.0

    Upgrade to release 4.61.0:
    
    - keras support for initial_epoch
    - misc documentation updates
    - fix & update tests
    - minor framework updates
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    dea80f3 View commit details
    Browse the repository at this point in the history
  20. python3-can: upgrade 3.3.3 -> 3.3.4

    Add runtime dependency to resolve errors that occurred when import can.
    
    Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    zangrc-fnst authored and Trevor Gamblin committed May 28, 2021
    Configuration menu
    Copy the full SHA
    743b642 View commit details
    Browse the repository at this point in the history