Skip to content

Commit

Permalink
Bump splunklib version in main app packages and sub-package-packages
Browse files Browse the repository at this point in the history
Also bump app version
  • Loading branch information
andrewphorn committed Aug 30, 2022
1 parent c67cc78 commit a3e20d9
Show file tree
Hide file tree
Showing 112 changed files with 4,109 additions and 2,486 deletions.
3 changes: 3 additions & 0 deletions TA_rumble_asset_sync/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ This is an add-on powered by the Splunk Add-on Builder.
# Binary File Declaration
/opt/splunk/var/data/tabuilder/package/TA_rumble_asset_sync/bin/ta_rumble_asset_sync/aob_py3/markupsafe/_speedups.cpython-37m-x86_64-linux-gnu.so: this file does not require any source code
/opt/splunk/var/data/tabuilder/package/TA_rumble_asset_sync/bin/ta_rumble_asset_sync/aob_py2/markupsafe/_speedups.so: this file does not require any source code
# Binary File Declaration
C:\Program Files\Splunk\var\data\tabuilder\package\TA_rumble_asset_sync\bin\ta_rumble_asset_sync\aob_py2\markupsafe\_speedups.so: this file does not require any source code
C:\Program Files\Splunk\var\data\tabuilder\package\TA_rumble_asset_sync\bin\ta_rumble_asset_sync\aob_py3\markupsafe\_speedups.cpython-37m-x86_64-linux-gnu.so: this file does not require any source code
2 changes: 1 addition & 1 deletion TA_rumble_asset_sync/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": {
"group": null,
"name": "TA_rumble_asset_sync",
"version": "1.0.15"
"version": "1.0.16"
},
"author": [
{
Expand Down
4 changes: 2 additions & 2 deletions TA_rumble_asset_sync/appserver/static/js/build/1.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions TA_rumble_asset_sync/appserver/static/js/build/4.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions TA_rumble_asset_sync/appserver/static/js/build/entry_page.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"name": "TA_rumble_asset_sync",
"displayName": "rumble-asset-sync",
"version": "1.0.15",
"apiVersion": "3.0.0",
"restRoot": "TA_rumble_asset_sync",
"schemaVersion": "0.0.2"
"schemaVersion": "0.0.3"
},
"pages": {
"configuration": {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@
"""Python library for Splunk."""

from __future__ import absolute_import
from .six.moves import map
__version_info__ = (1, 6, 6)
from splunklib.six.moves import map
import logging

DEFAULT_LOG_FORMAT = '%(asctime)s, Level=%(levelname)s, Pid=%(process)s, Logger=%(name)s, File=%(filename)s, ' \
'Line=%(lineno)s, %(message)s'
DEFAULT_DATE_FORMAT = '%Y-%m-%d %H:%M:%S %Z'


# To set the logging level of splunklib
# ex. To enable debug logs, call this method with parameter 'logging.DEBUG'
# default logging level is set to 'WARNING'
def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE_FORMAT):
logging.basicConfig(level=level,
format=log_format,
datefmt=date_format)

__version_info__ = (1, 7, 1)
__version__ = ".".join(map(str, __version_info__))
Loading

0 comments on commit a3e20d9

Please sign in to comment.