1
0

Compare commits

6 Commits

Author SHA256 Message Date
fb4c74602b Accepting request 1332280 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1332280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=24
2026-02-10 20:13:37 +00:00
672432eb86 - Update to version 1.16.0
* Implement SMB2 LOCK operation.
  * Allow floating point times for smbclient.utime .
  * Update CI and build information.
  * Generalize to Callables Instead of Strictly Lambdas.
  * Propagate missing session params.
  * Fix no symlink buffer on symlink open.
  * Fix copy/copy2 kwargs handling.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=48
2026-02-10 14:30:36 +00:00
6f8e254e8a Accepting request 1223468 from devel:languages:python
Forwarded request #1223449 from mnhauke

- Update to version 1.15.0
    * Fix Impacket logoff session id check.
    * Update session id logic.
    * Add smbclient.liststreams to enumerate ADS streams.
    * Add some type annotations, most notably to smbclient.open_file
    * Add Python 3.13 support.

OBS-URL: https://build.opensuse.org/request/show/1223468
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=23
2024-11-12 18:21:52 +00:00
52f41576f5 - Update to version 1.15.0
* Fix Impacket logoff session id check.
  * Update session id logic.
  * Add smbclient.liststreams to enumerate ADS streams.
  * Add some type annotations, most notably to smbclient.open_file
  * Add Python 3.13 support.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=46
2024-11-12 01:24:20 +00:00
452f03a1eb Accepting request 1223346 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1223346
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-smbprotocol?expand=0&rev=22
2024-11-11 13:58:20 +00:00
97e0fba6cf - Update to version 1.14.0
* type information of SMBDirEntryInformation.last_write_time set
    to datetime.
  * Customizable receive timeout for SMB Connection
  * Dropped support for Python 3.7
  * SMBDirEntryInformation.last_write_time is now annotated as
    datetime.datetime. Previously, it was datetime.date.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-smbprotocol?expand=0&rev=44
2024-11-11 11:37:38 +00:00
4 changed files with 38 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0c16c1502d269369f7b45a29ed331fd7bbf6319022b13b5b7a11609b477b8f79
size 190586

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:07c1f7c01b3c301ff60ec5c97f354fcfe366ef959dd538f56250f04936d2f77f
size 193912

View File

@@ -1,3 +1,36 @@
-------------------------------------------------------------------
Mon Feb 9 12:03:19 UTC 2026 - Martin Hauke <mardnh@gmx.de>
- Update to version 1.16.0
* Implement SMB2 LOCK operation.
* Allow floating point times for smbclient.utime .
* Update CI and build information.
* Generalize to Callables Instead of Strictly Lambdas.
* Propagate missing session params.
* Fix no symlink buffer on symlink open.
* Fix copy/copy2 kwargs handling.
-------------------------------------------------------------------
Mon Nov 11 22:08:22 UTC 2024 - Martin Hauke <mardnh@gmx.de>
- Update to version 1.15.0
* Fix Impacket logoff session id check.
* Update session id logic.
* Add smbclient.liststreams to enumerate ADS streams.
* Add some type annotations, most notably to smbclient.open_file
* Add Python 3.13 support.
-------------------------------------------------------------------
Sun Nov 10 19:02:11 UTC 2024 - Martin Hauke <mardnh@gmx.de>
- Update to version 1.14.0
* type information of SMBDirEntryInformation.last_write_time set
to datetime.
* Customizable receive timeout for SMB Connection
* Dropped support for Python 3.7
* SMBDirEntryInformation.last_write_time is now annotated as
datetime.datetime. Previously, it was datetime.date.
-------------------------------------------------------------------
Thu Mar 21 17:34:50 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-smbprotocol
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,12 @@
Name: python-smbprotocol
Version: 1.13.0
Version: 1.16.0
Release: 0
Summary: SMBv2/v3 client for Python 2 and 3
License: MIT
Group: Development/Languages/Python
URL: https://github.com/jborean93/smbprotocol
#Source: https://files.pythonhosted.org/packages/source/s/smbprotocol/smbprotocol-%%{version}.tar.gz
Source: https://github.com/jborean93/smbprotocol/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module cryptography >= 2.0}
BuildRequires: %{python_module pip}