Skip to content

Commit fa046ef

Browse files
author
Sam Stelle
committed
Reworked Changelog
1 parent 8c2ed31 commit fa046ef

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

CHANGELOG.md

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,22 @@
55

66
### New features and APIs
77

8-
1. Added the ability to work with Storage Passwords.
8+
1. Added the ability to interact with Storage Passwords. Both the `Entity`
9+
and the `ReadOnlyCollection` functionalities have been added.
910

10-
*Example*
11+
2. Added a `GenerateHelloCommand` script to the searchcommand_app.
1112

12-
```
13-
storage_passwords_collection = service.storage_passwords
14-
new_storage_password = storage_passwords_collection.create(password="mypw", username="myuser")
15-
```
16-
17-
2. Improved the searchcommand_app example.
18-
19-
3. Added a human readable title parameter to modularinput argument.
13+
3. Added a human readable title parameter to `modularinput.argument`.
2014

2115
### Bug fixes
2216

23-
1. Now entities that contain slashes in their name can be created/deleted and accessed correctly.
17+
1. Now entities that contain slashes in their name can be created, deleted and accessed correctly.
2418

25-
2. Fixed a perfomance issue with connecting to Windows.
19+
2. Fixed a perfomance issue with connecting to Splunk in Windows.
2620

27-
3. Improved the ```service.restart()``` function.
21+
3. Improved the `service.restart()` function.
2822

29-
4. Renamed the searchcommand ```csv``` module to ```splunk_csv```.
23+
4. Renamed the searchcommand `csv` module to `splunk_csv`.
3024

3125
## Version 1.2.3
3226

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
"""Python library for Splunk."""
1616

17-
__version_info__ = (1, 2, 3)
17+
__version_info__ = (1, 3, 0)
1818
__version__ = ".".join(map(str, __version_info__))
1919

splunklib/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def fired_alerts(self):
410410
"""
411411
return Collection(self, PATH_FIRED_ALERTS, item=AlertGroup)
412412

413-
@xla
413+
@property
414414
def indexes(self):
415415
"""Returns the collection of indexes for this Splunk instance.
416416

0 commit comments

Comments
 (0)