1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
NEWS
====
Skytools 3.9.2 (2023-08-27)
---------------------------
Cleanups:
* basetypes: add 'statusmessage' property
* ci: cleanups
* ci: split qemu to separate runner
Skytools 3.9.1 (2023-08-25)
---------------------------
Fixes:
* sqltools: mark ``exists_*`` functions as returning bool
* basetypes: sync DictRow with Mapping
* basetypes: describe additional psycopg2 api
Cleanups:
* build: create ``abi3`` wheels
* ci: drop unmaintained ``create-release``, ``upload-release-asset`` actions
* ci: build aarch64 wheel
* ci: test on pypy
Skytools 3.9 (2023-08-23)
-------------------------
Feature removal:
* Drop support for Python 3.6 and earlier.
Fixes:
* dbstruct: fix PUBLIC grant handling.
Cleanups:
* Apply mypy 'strict' typing to most modules and tests.
* Use ``pyproject.toml`` for project setup.
Warning: next release will drop some ancient and rarely used code:
* skytools.plpy_applyrow
* skytools.dbservice
* skytools.skylog.LogDBHandler
Skytools 3.8.2 (2023-05-19)
---------------------------
Fixes:
* scripting: restore tracking of failed work() state
Skytools 3.8.1 (2022-11-21)
---------------------------
Fixes:
* full_copy: use ``ONLY`` when using filter query
* test_scripting: support Python 3.11
Skytools 3.8 (2022-07-11)
-------------------------
Cleanups:
* Lots of typing improvements
* Refresh CI setup
* Work around PyPy3.9 bug
Skytools 3.7.3 (2021-08-03)
---------------------------
Fixes:
* Allow binary I/O in copy_expert signature.
Skytools 3.7.2 (2021-07-06)
---------------------------
Fixes:
* Avoid psycopg copy_from, not usable in v2.9
Skytools 3.7.1 (2021-06-08)
---------------------------
Fixes:
* quoting: drop obsolete keywords from quote_ident
* quoting: add COL_NAME_KEYWORDs into quote_ident list
* querybuilder: use dbdict more consistently
Cleanups:
* basetypes: tune Protocol classes
* tests: avoid 'pointless-statement'
* sqltools: annotate dbdict
* checker: use 'with' with files
* modules: add .pyi annotations
Skytools 3.7 (2021-05-17)
-------------------------
Features:
* config: config_format=2 switches to extended format.
* querybuilder: alt SQL for missing value.
* querybuilder: handle more value types in inline queries.
* querybuilder/plpy: always use prepared plan. Prevously when GD/SD
was not given, it switched to inline params, but that was problem
because inline value quoting may be different that PL/Python's.
Now it always uses plpy.prepare.
Cleanups:
* querybuilder: switch to functools.lru_cache, instead local LRU.
* querybuilder: use regex for parsing, gives cleaner code.
* querybuilder: improve error handling
* natsort: switch to string key, instead of tuple.
* style: Add type annotations to most modules.
* style: use new-style super() everywhere.
* ci: drop win32 repack, abi3 is now supported on win32
* ci: drop ubuntu 16.04, to be obsoleted.
* ci: build wheels using manylinux2014 images.
Skytools 3.6.1 (2020-09-29)
---------------------------
Fixes:
* scripting: Do not set .my_name on connection,
does not work on plain Psycopg connection.
* cquoting: Work around pypy3 PyBytes_Check bug.
* modules: Use multiphase init.
Skytools 3.6 (2020-08-11)
-------------------------
Feature removal:
* Remove ancient compat code from psycopgwrapper:
- dict* and iter* methods
- getattr access to fields.
- Keepalive tuning from connect_database().
That is built-in to libpq since 9.0.
- Require psycpopg 2.5+
Cleanups:
* Switch C modules to use stable ABI only (abi3).
* Remove Debian packaging.
* Upgrade apipkg to 1.5.
* Remove Py2 compat.
Skytools 3.5 (2020-07-18)
-------------------------
Fixes:
* dbservice: py3 fix for row.values()
* skylog: Use logging.setLogRecordFactory for adding extra fields
* fileutil,sockutil: fixes for win32.
* natsort: py3 fix, improve rules.
Cleanups:
* Set up Github Actions for CI and release.
* Use "with" for opening files.
* Drop py2 syntax.
* Code reformat.
* Convert nose+doctests to pytest.
Skytools 3.4 (2019-11-14)
-------------------------
* Support Postgres 10 sequences
* Make full_copy text-based
* Allow None fields in magic_insert
* Fix iterator use in magic insert
* Fix Python3 bugs
* Switch off Python2 tests, to avoid wasting time.
Skytools 3.3 (2017-09-21)
-------------------------
* Separate 'skytools' module out from big package
* Python 3 support
Skytools 3.2 and older
----------------------
See old changes here:
https://github.com/pgq/skytools-legacy/blob/master/NEWS
|