Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/2.1.0 #595

Merged
merged 35 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ca3d9eb
Add exception logging in Script
kkedziak-splunk Feb 22, 2024
d9492f5
Merge branch 'master' into feature/improve_logging
kkedziak-splunk Apr 5, 2024
2869237
Revert CHANGELOG.md
kkedziak-splunk Apr 5, 2024
e5f7af0
Revert README.md
kkedziak-splunk Apr 5, 2024
3dab0b5
Update __init__.py
kkedziak-splunk Apr 5, 2024
be7dfe0
Refactor comment
kkedziak-splunk May 8, 2024
40e7b2a
DVPL-0: don't use latest splunk version because of HEC token issue
maszyk99 May 16, 2024
75806e6
Merge pull request #576 from splunk/DVPL-0/change-splunk-versions
maszyk99 May 17, 2024
e4a07be
Merge branch 'refs/heads/develop' into feature/improve_logging
kkedziak-splunk May 20, 2024
3ef0519
Change
kkedziak-splunk May 21, 2024
8d74bd5
Merge pull request #559 from kkedziak-splunk/feature/improve_logging
maszyk99 May 23, 2024
1a2d17f
Add python2/3 utils file back
maszyk99 Jun 25, 2024
ba04e1b
Merge pull request #578 from splunk/DVPL-0/add-six-py-back
maszyk99 Jun 27, 2024
a02b2ce
update pipelines so they would be testing python3.13
szymonjas Oct 15, 2024
a4085e0
DVPL-0: enable manual workflow trigger
maszyk99 Oct 16, 2024
6b55844
DVPL-0: fix test pipeline
maszyk99 Oct 20, 2024
eeb1ecf
Merge pull request #587 from splunk/DVPL-0/enable-manual-workflow-tri…
maszyk99 Oct 20, 2024
93f51c4
Add Service.macros
Synse Feb 13, 2023
6de12b1
Add tests for macros
Synse Feb 13, 2023
e7ba1c1
Merge pull request #589 from splunk/test-macros-pr
maszyk99 Oct 21, 2024
6ec2559
remove commands used to run test directly from setup.py
szymonjas Oct 24, 2024
1b44135
modify tox ini not to use deprecated libraries for unittests and add …
szymonjas Oct 24, 2024
97e1b60
Merge remote-tracking branch 'origin/develop' into DVPL-11087-Python3.13
szymonjas Oct 24, 2024
2f2e174
modify testing traceback so it would filter out additions to tracback…
szymonjas Oct 24, 2024
e3f3968
Revert "DVPL-0: don't use latest splunk version because of HEC token …
maszyk99 Oct 25, 2024
0c9469d
Merge pull request #593 from splunk/DVPL-0/update-splunk-image
szymonjas Oct 28, 2024
a8948f8
resolve conflicts
szymonjas Oct 29, 2024
41e8948
Merge remote-tracking branch 'origin/develop' into VULN-17383
szymonjas Oct 29, 2024
2a8931e
Merge pull request #590 from splunk/VULN-17383
szymonjas Oct 29, 2024
2b90307
Merge pull request #592 from splunk/DVPL-11087-Python3.13
szymonjas Oct 29, 2024
daf1bcd
Merge remote-tracking branch 'origin/master' into develop
szymonjas Oct 29, 2024
f637ade
use SSL DEFAULT CONTEX, use tls version min 1.2, allow for usage of S…
szymonjas Sep 25, 2024
180cdd2
Add changelog
szymonjas Oct 29, 2024
25c44e9
update changelog
szymonjas Oct 29, 2024
d36db5e
update ReadMe
szymonjas Oct 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update __init__.py
  • Loading branch information
kkedziak-splunk authored Apr 5, 2024
commit 3dab0b528bb429f5b8c795f86294f0f4a6853f16
2 changes: 1 addition & 1 deletion splunklib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
datefmt=date_format)


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