Skip to content

Commit ee3b386

Browse files
committed
new changelog and version for next release
1 parent a08bede commit ee3b386

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33

44

5+
## [5.100.1] - 2024-07-17
6+
7+
### Added
8+
9+
- `None` Nothing added
10+
11+
### Changed
12+
13+
- `Fix` The HTTP authorization interfaces keep changing and an internal user found a code path that didn't
14+
provide the expected behavior. In order to still support older versions of viya 3.x, which don't have the SASPy
15+
client_id and only supported user/pw authentication (that's changed in more recent 3.5 versions), I had to use
16+
a different internal client_id. However, that client id doesn't support all the things, specifically refresh token
17+
in this case, that the SASPy client id supports. The path through authentication in saspy when using user/pw and
18+
providing client_id didn't use the client id you provided, but rather used the old internal one. So, this fix
19+
simply allows you to provide a client_id (`SASPy` or other), and user/pw as the means to connect. Authorization Code
20+
authentication uses the SASPy id by default (which supports that) as well as with any client_id you provide, so it's
21+
only the user/pw case with client_id being provided that had to be fixed; it now uses the client_id you said.
22+
Until I no longer have to support the old Viya 3.x versions, you do need to specify client_id='SASPy' in order to
23+
get the refresh token, which I do use to automatically refresh your auth token so you don't have it expire after 1
24+
hour, which they changed it to recently.
25+
26+
### Fixed
27+
28+
- `None` Nothing fixed
29+
30+
### Removed
31+
32+
- `None` Nothing removed
33+
34+
35+
536
## [5.100.0] - 2024-07-10
637

738
### Added
@@ -27,7 +58,7 @@ For instance, given a SASdata object: sd.to_df(tsmin='1966-01-03 00:00:00.000000
2758

2859
### Note
2960

30-
- This is just a note to acknowledge that the minor version jumped from 15 to 100. What that about!?
61+
- This is just a note to acknowledge that the minor version jumped from 15 to 100. What that about!?
3162
Well, glad you asked ;) This is the 100th release of SASPy, in under its almost 10 years in existence. So, I just
3263
thought I'd skip a few minor releases to identify the milestone. It's been a privilege to have created and supported
3364
SASPy this whole time, and to have helped and supported all of our users who use it!

saspy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.100.0'
1+
__version__ = '5.100.1'

0 commit comments

Comments
 (0)