forked from SAP-archive/PyRFC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
179 lines (134 loc) · 5.04 KB
/
CHANGES
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
Change log
==========
1.9.93 (2018-08-20)
-------------------
- Tables' processing memory consumption optimisation (#60)
1.9.92 (2018-07-31)
-------------------
- pyrfc.__version__ attribute added
- Cython version restriction removed
- Documentation
1.9.91 (2018-04-27)
-------------------
- BCD and Floats input conversion fix
1.9.9 (2018-04-18)
------------------
- Deactivate not requested parameters (see RfcSetParameterActive)
1.9.8 (2017-11-26)
------------------
- Fix array fill
- Fix float values handling
1.9.7 (2017-11-08)
------------------
- Cython 0.27.3
- Helper methods added:
remove function description from cache (issue #40)
read function description from cache (for unit test of the above)
- No '' keys required anymore for tables with elementary line types (not a structure)
- Linux and Windows wheels for Python 2.7 and 3.6
1.9.6 (2017-03-17)
------------------
- Don't fix and fill invalid dates and times into container, let the client and backend handle
- Expose open and reopen methods
- Windows prerequisites added to README
- 8 bytes unicode fix, issue #38
1.9.5 (2016-12-23)
------------------
- wheels packages added
1.9.4 (Development)
-------------------
- RfcGetVersion API added
- More docu
- Unit tests
1.9.3 (2014-01-26)
------------------
- Fixed Date wrap bug (reported by Flavio Marinone)
- Documentation rework
1.9.2 (2012-11-26)
------------------
- Fixed BCD wrap bug (reported by Thomas Marcon)
1.9.1 (2012-10-02)
------------------
- Added server usage
- Server class (wraps server related activities)
- FunctionDescription and TypeDescription as classes for improved
metadata handling.
- Added support for transactional, queued, and background RFC (tRFC, qRFC, bgRFC)
for client usage.
- Renamed exceptions in accordance with PEP08:
- Exception names changed to Error (e.g. ExternalRuntimeException renamed to
ExternalRuntimeError).
- Rfc now uppercase, e.g. RFCLibError.
- Abap now uppercase, e.g. ABAPRuntimeError.
- Connection class
- removed __init__ optional parameter `strip`, added `config` dictionary as optional
parameter.
- renamed connectionInfo to get_connection_attributes()
- renamed resetServerContext to reset_server_context()
- RFCTYPE_BCD fields are now converted to Decimal object (wrap). For filling,
you may pass either Decimal objects or floats.
1.9 (2012-09-14)
----------------
- Restructured exceptions:
- All exceptions are now directly available in the pyrfc package (e.g. from pyrfc import LogonException)
- RfclibException renamed to `RfcLibException`
- All used exceptions (corresponding to RFC error group classes) inherit now from RfcLibException
(implication for `LogonException`, `AbapRuntimeException`, `AbapApplicationException`)
- Constructor for `RfcLibException` changed (first argument is now message), allowing to raise exceptions manually with
only one string value
- AbapException deleted.
- Added external exceptions (`ExternalRuntimeException`, `ExternalApplicationException`, `ExternalAuthorizationException`)
- restructured and added tests (MRFC and STFC function groups).
- fixed bugfix implications from rev. 1.8.2. (LogonException does not have code fields now)
- Added examples (sample/): printDescription.py
1.8.2 (2012-04-05)
------------------
- bugfix: LogonException now inherits from RfcException instead of
RfcLibException so it only needs one message argument.
1.8.1 (2012-02-27)
------------------
- (bugfix in removed module)
1.8 (2012-02-07)
----------------
- added strip parameter in `Connection` to rstrip whitespaces in rfc results
- added resetServerContext
- fixed bug when dealing with xstring results
- added __bool__ for easy check if connections is alive
- release GIL for RfcInvoke and RfcOpenConnection
1.7 (2011-12-23)
----------------
- wrapped fillVariable into try..except block to
enrich exception information
- Added _pyrfc.connectionInfo (sapnwrfc.RfcGetConnectionAttributes)
1.6 (2011-12-12)
----------------
- added bcd conversion
- added performance test
- added setup.py test suite
1.5 (2011-12-05)
----------------
- first buildout configuration that works on Linux and Windows
- rename the C extension to ``_pyrfc`` and importing it
at the root of a new "real" Python package ``pyrfc``.
This is fully backwards compatible and allows splitting the
single module into a C-only part and separate Python modules
for bettr maintainability.
- move pure Python code from the Cython extension module into
separate Python modules for maintainability
1.4 (2011-11-25)
----------------
- start on package documentation
- re-added support for zero dates
1.3 (2011-11-22)
----------------
- fixed various buffer length issues
1.2 (2011-11-18)
----------------
- malloc'ed buffer, never too small
- type-specific RFCGetters
1.1 (2011-11-16)
----------------
- your buffer was too small
1.0 (2011-11-11)
----------------
- first egg release