Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-sqlparse-0.4.1-1.10 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python3-sqlparse Distribution: SUSE Linux Enterprise 15
Version: 0.4.1 Vendor: SUSE LLC <https://www.suse.com/>
Release: 1.10 Build date: Sat Mar 6 00:30:52 2021
Group: Development/Languages/Python Build host: sheep18
Size: 327210 Source RPM: python-sqlparse-0.4.1-1.10.src.rpm
Packager: https://www.suse.com/
Url: https://github.com/andialbrecht/sqlparse
Summary: Non-validating SQL parser
sqlparse is a non-validating SQL parser module.  It provides support for
parsing, splitting and formatting SQL statements.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Jan 28 2021 alarrosa@suse.com
  - Disable building a python2 flavor so we can build the package
    for Leap/SLE.
* Thu Nov 26 2020 dmueller@suse.com
  - update to 0.4.1:
    * Python 3.9 support
    * Remove support for end-of-life Python 2.7 and 3.4. Python 3.5+ is now
    required.
    * Remaining strings that only consist of whitespaces are not treated as
    statements anymore. Code that ignored the last element from
    sqlparse.split() should be updated accordingly since that function
    now doesn't return an empty string as the last element in some
    cases (issue496).
  - remove non-upstream stdout-encoding-set.patch patch
* Tue Mar 24 2020 steven.kowalik@suse.com
  - Add stdout-encoding-set.patch to use sys.stdout.reconfigure() if
    the stream is an instance of TextIOWrapper to support a pytest change.
* Mon Mar 09 2020 dmueller@suse.com
  - update to v0.3.1:
    * Add HQL keywords (pr475, by matwalk).
    * Add support for time zone casts (issue489).
    * Enhance formatting of AS keyword (issue507, by john-bodley).
    * Stabilize grouping engine when parsing invalid SQL statements.
    * Fix splitting of SQL with multiple statements inside
      parentheses (issue485, pr486 by win39).
    * Correctly identify NULLS FIRST / NULLS LAST as keywords (issue487).
    * Fix splitting of SQL statements that contain dollar signs in
      identifiers (issue491).
    * Remove support for parsing double slash comments introduced in
      0.3.0 (issue456) as it had some side-effects with other dialects and
      doesn't seem to be widely used (issue476).
    * Restrict detection of alias names to objects that acutally could
      have an alias (issue455, adopted some parts of pr509 by john-bodley).
    * Fix parsing of date/time literals (issue438, by vashek).
    * Fix initialization of TokenList (issue499, pr505 by john-bodley).
    * Fix parsing of LIKE (issue493, pr525 by dbczumar).
    * Improve parsing of identifiers (pr527 by liulk).
* Wed Apr 17 2019 tchvatal@suse.com
  - Use %pytest macro
* Tue Mar 12 2019 jayvdb@gmail.com
  - Move fdupes from %check to %install
  - Update to v0.3.0
    * Remove support for Python 3.3.
    * New formatting option "--indent_after_first"
    * New formatting option "--indent_columns"
    * Add UPSERT keyword
    * Strip multiple whitespace within parentheses
    * Support double slash (//) comments
    * Support for Calcite temporal keywords
    * Fix occasional IndexError
    * Fix incorrect splitting of strings containing new lines
    * Fix reindent issue for parenthesis
    * Fix from( parsing issue
    * Fix for get_real_name() to return correct name
    * Wrap function params when wrap_after is set
    * Fix parsing of "WHEN name" clauses
    * Add missing EXPLAIN keyword
    * Fix issue with strip_comments causing a syntax error
    * Fix formatting on INSERT which caused staircase effect on values
    * Avoid formatting of psql commands
    * Unify handling of GROUP BY/ORDER BY
    * Remove unnecessary compat shim for bytes
* Thu Aug 23 2018 alarrosa@suse.com
  - Update to 0.2.4:
    * Add more keywords for MySQL table options (pr328, pr333, by phdru).
    * Add more PL/pgSQL keywords (pr357, by Demetrio92).
    * Improve parsing of floats (pr330, by atronah).
    * Fix parsing of MySQL table names starting with digits (issue337).
    * Fix detection of identifiers using comparisons (issue327).
    * Fix parsing of UNION ALL after WHERE (issue349).
    * Fix handling of semicolon in assignments (issue359, issue358).
  - Use fdupes and %license
  - Remove shebangs from non-executable python files
* Wed Jul 12 2017 tbechtold@suse.com
  - update to 0.2.3:
    * New command line option "--encoding" (by twang2218, pr317).
    * Support CONCURRENTLY keyword (issue322, by rowanseymour).
    * Fix some edge-cases when parsing invalid SQL statements.
    * Fix indentation of LIMIT (by romainr, issue320).
    * Fix parsing of INTO keyword (issue324).
    * Several improvements regarding encodings.
    * Add comma_first option: When splitting list "comma first" notation
    is used (issue141).
    * Fix parsing of incomplete AS (issue284, by vmuriart).
    * Fix parsing of Oracle names containing dollars (issue291).
    * Fix parsing of UNION ALL (issue294).
    * Fix grouping of identifiers containing typecasts (issue297).
    * Add Changelog to sdist again (issue302).
    * `is_whitespace` and `is_group` changed into properties
  - convert to singlespec
* Tue Nov 15 2016 dmueller@suse.com
  - update to 0.2.1
* Wed May 13 2015 benoit.monin@gmx.fr
  - update to version 0.1.15:
    * Fix a regression for identifiers with square brackets notation
      (issue153, by darikg).
    * Add missing SQL types (issue154, issue155, issue156, by
      jukebox).
    * Fix parsing of multi-line comments (issue172, by JacekPliszka).
    * Fix parsing of escaped backslashes (issue174, by caseyching).
    * Fix parsing of identifiers starting with underscore (issue175).
    * Fix misinterpretation of IN keyword (issue183).
    * Improve formatting of HAVING statements.
    * Improve parsing of inline comments (issue163).
    * Group comments to parent object (issue128, issue160).
    * Add double precision builtin (issue169, by darikg).
    * Add support for square bracket array indexing (issue170,
      issue176, issue177 by darikg).
    * Improve grouping of aliased elements (issue167, by darikg).
    * Support comments starting with '#' character (issue178).
  - additional changes from version 0.1.14:
    * Floats in UPDATE statements are now handled correctly
      (issue145).
    * Properly handle string literals in comparisons (issue148,
      change proposed by aadis).
    * Fix indentation when using tabs (issue146).
    * Improved formatting in list when newlines precede commas
      (issue140).
  - additional changes from version 0.1.13:
    * Fix a regression in handling of NULL keywords introduced in
      0.1.12.
  - additional changes from version 0.1.12:
    * Fix handling of NULL keywords in aliased identifiers.
    * Fix SerializerUnicode to split unquoted newlines (issue131, by
      Michael Schuller).
    * Fix handling of modulo operators without spaces (by gavinwahl).
    * Improve parsing of identifier lists containing placeholders.
    * Speed up query parsing of unquoted lines (by Michael Schuller).
  - additional changes from version 0.1.11:
    * Fix incorrect parsing of string literals containing line breaks
      (issue118).
    * Fix typo in keywords, add MERGE, COLLECT keywords
      (issue122/124, by Cristian Orellana).
    * Improve parsing of string literals in columns.
    * Fix parsing and formatting of statements containing EXCEPT
      keyword.
    * Fix Function.get_parameters() (issue126/127, by spigwitmer).
    * Classify DML keywords (issue116, by Victor Hahn).
    * Add missing FOREACH keyword.
    * Grouping of BEGIN/END blocks.
    * Python 2.5 isn't automatically tested anymore, neither Travis
      nor Tox still support it out of the box.
* Sat Nov 08 2014 ledest@gmail.com
  - fix bashism in pre script

Files

/etc/alternatives/sqlformat
/usr/bin/sqlformat
/usr/bin/sqlformat-3.6
/usr/lib/python3.6/site-packages/sqlparse
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/sqlparse-0.4.1-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/sqlparse/__init__.py
/usr/lib/python3.6/site-packages/sqlparse/__main__.py
/usr/lib/python3.6/site-packages/sqlparse/__pycache__
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/__main__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/__main__.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/cli.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/cli.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/exceptions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/exceptions.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/formatter.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/formatter.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/keywords.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/keywords.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/lexer.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/lexer.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/sql.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/sql.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/tokens.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/tokens.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/cli.py
/usr/lib/python3.6/site-packages/sqlparse/engine
/usr/lib/python3.6/site-packages/sqlparse/engine/__init__.py
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/grouping.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/grouping.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/engine/filter_stack.py
/usr/lib/python3.6/site-packages/sqlparse/engine/grouping.py
/usr/lib/python3.6/site-packages/sqlparse/engine/statement_splitter.py
/usr/lib/python3.6/site-packages/sqlparse/exceptions.py
/usr/lib/python3.6/site-packages/sqlparse/filters
/usr/lib/python3.6/site-packages/sqlparse/filters/__init__.py
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/others.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/others.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/output.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/output.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/reindent.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/reindent.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/tokens.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/__pycache__/tokens.cpython-36.pyc
/usr/lib/python3.6/site-packages/sqlparse/filters/aligned_indent.py
/usr/lib/python3.6/site-packages/sqlparse/filters/others.py
/usr/lib/python3.6/site-packages/sqlparse/filters/output.py
/usr/lib/python3.6/site-packages/sqlparse/filters/reindent.py
/usr/lib/python3.6/site-packages/sqlparse/filters/right_margin.py
/usr/lib/python3.6/site-packages/sqlparse/filters/tokens.py
/usr/lib/python3.6/site-packages/sqlparse/formatter.py
/usr/lib/python3.6/site-packages/sqlparse/keywords.py
/usr/lib/python3.6/site-packages/sqlparse/lexer.py
/usr/lib/python3.6/site-packages/sqlparse/sql.py
/usr/lib/python3.6/site-packages/sqlparse/tokens.py
/usr/lib/python3.6/site-packages/sqlparse/utils.py
/usr/share/doc/packages/python3-sqlparse
/usr/share/doc/packages/python3-sqlparse/AUTHORS
/usr/share/doc/packages/python3-sqlparse/README.rst
/usr/share/licenses/python3-sqlparse
/usr/share/licenses/python3-sqlparse/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024