Skip to content

Commit d9e8f05

Browse files
IBMalokGitHub Enterprise
authored and
GitHub Enterprise
committed
Release 2.13.2
1 parent 9744382 commit d9e8f05

File tree

7 files changed

+161
-6
lines changed

7 files changed

+161
-6
lines changed

.pre-commit-config.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This is an example configuration to enable detect-secrets in the pre-commit hook.
2+
# Add this file to the root folder of your repository.
3+
#
4+
# Read pre-commit hook framework https://pre-commit.com/ for more details about the structure of config yaml file and how git pre-commit would invoke each hook.
5+
#
6+
# This line indicates we will use the hook from ibm/detect-secrets to run scan during committing phase.
7+
repos:
8+
- repo: https://github.com/ibm/detect-secrets
9+
# If you desire to use a specific version of detect-secrets, you can replace `master` with other git revisions such as branch, tag or commit sha.
10+
# You are encouraged to use static refs such as tags, instead of branch name
11+
#
12+
# Running "pre-commit autoupdate" automatically updates rev to latest tag
13+
rev: 0.13.1+ibm.61.dss
14+
hooks:
15+
- id: detect-secrets # pragma: whitelist secret
16+
# Add options for detect-secrets-hook binary. You can run `detect-secrets-hook --help` to list out all possible options.
17+
# You may also run `pre-commit run detect-secrets` to preview the scan result.
18+
# when "--baseline" without "--use-all-plugins", pre-commit scan with just plugins in baseline file
19+
# when "--baseline" with "--use-all-plugins", pre-commit scan with all available plugins
20+
# add "--fail-on-unaudited" to fail pre-commit for unaudited potential secrets
21+
args: [--baseline, .secrets.baseline, --use-all-plugins]

.secrets.baseline

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
{
2+
"exclude": {
3+
"files": "^.secrets.baseline$",
4+
"lines": null
5+
},
6+
"generated_at": "2023-06-04T14:12:05Z",
7+
"plugins_used": [
8+
{
9+
"name": "AWSKeyDetector"
10+
},
11+
{
12+
"name": "ArtifactoryDetector"
13+
},
14+
{
15+
"name": "AzureStorageKeyDetector"
16+
},
17+
{
18+
"base64_limit": 4.5,
19+
"name": "Base64HighEntropyString"
20+
},
21+
{
22+
"name": "BasicAuthDetector"
23+
},
24+
{
25+
"name": "BoxDetector"
26+
},
27+
{
28+
"name": "CloudantDetector"
29+
},
30+
{
31+
"ghe_instance": "github.ibm.com",
32+
"name": "GheDetector"
33+
},
34+
{
35+
"name": "GitHubTokenDetector"
36+
},
37+
{
38+
"hex_limit": 3,
39+
"name": "HexHighEntropyString"
40+
},
41+
{
42+
"name": "IbmCloudIamDetector"
43+
},
44+
{
45+
"name": "IbmCosHmacDetector"
46+
},
47+
{
48+
"name": "JwtTokenDetector"
49+
},
50+
{
51+
"keyword_exclude": null,
52+
"name": "KeywordDetector"
53+
},
54+
{
55+
"name": "MailchimpDetector"
56+
},
57+
{
58+
"name": "NpmDetector"
59+
},
60+
{
61+
"name": "PrivateKeyDetector"
62+
},
63+
{
64+
"name": "SlackDetector"
65+
},
66+
{
67+
"name": "SoftlayerDetector"
68+
},
69+
{
70+
"name": "SquareOAuthDetector"
71+
},
72+
{
73+
"name": "StripeDetector"
74+
},
75+
{
76+
"name": "TwilioKeyDetector"
77+
}
78+
],
79+
"results": {
80+
"tests/functional/test_collection.py": [
81+
{
82+
"hashed_secret": "829c3804401b0727f70f73d4415e162400cbe57b",
83+
"is_secret": false,
84+
"is_verified": false,
85+
"line_number": 22,
86+
"type": "Secret Keyword",
87+
"verified_result": null
88+
}
89+
],
90+
"tests/functional/test_s3.py": [
91+
{
92+
"hashed_secret": "62cdb7020ff920e5aa642c3d4066950dd1f01f4d",
93+
"is_secret": false,
94+
"is_verified": false,
95+
"line_number": 516,
96+
"type": "Secret Keyword",
97+
"verified_result": null
98+
}
99+
],
100+
"tests/functional/test_smoke.py": [
101+
{
102+
"hashed_secret": "829c3804401b0727f70f73d4415e162400cbe57b",
103+
"is_secret": false,
104+
"is_verified": false,
105+
"line_number": 26,
106+
"type": "Secret Keyword",
107+
"verified_result": null
108+
},
109+
{
110+
"hashed_secret": "62cdb7020ff920e5aa642c3d4066950dd1f01f4d",
111+
"is_secret": false,
112+
"is_verified": false,
113+
"line_number": 80,
114+
"type": "Secret Keyword",
115+
"verified_result": null
116+
}
117+
]
118+
},
119+
"version": "0.13.1+ibm.61.dss",
120+
"word_list": {
121+
"file": null,
122+
"hash": null
123+
}
124+
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## 2.13.2
4+
5+
### Content
6+
7+
#### Defect Fixes
8+
9+
* COSSDK-101996: <https://github.com/IBM/ibm-cos-sdk-python/issues/56>
10+
* Update dependencies
11+
312
## 2.13.1
413

514
### Content

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Feel free to use GitHub issues for tracking bugs and feature requests, but for h
8282

8383
## Language Support Policy
8484

85-
IBM supports [current public releases](https://devguide.python.org/#status-of-python-branches). IBM will deprecate language versions 90 days after a version reaches end-of-life. All clients will need to upgrade to a supported version before the end of the grace period.
85+
IBM supports [current public releases](https://devguide.python.org/versions/#versions). IBM will deprecate language versions 90 days after a version reaches end-of-life. All clients will need to upgrade to a supported version before the end of the grace period.
8686

8787
## License
8888

ibm_boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
__author__ = 'IBM'
22-
__version__ = '2.13.1'
22+
__version__ = '2.13.2'
2323

2424

2525
# The default Boto3 session; autoloaded when needed.

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
wheel==0.40.0
1+
wheel==0.41.2
22
coverage==5.5
33

44
# Pytest specific deps
5-
pytest==7.3.1
5+
pytest==7.4.1
66
pytest-cov==2.12.1
77
atomicwrites>=1.0 # Windows requirement
88
colorama>0.3.0 # Windows requirement

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010

1111
requires = [
12-
'ibm-cos-sdk-core==2.13.1',
13-
'ibm-cos-sdk-s3transfer==2.13.1',
12+
'ibm-cos-sdk-core==2.13.2',
13+
'ibm-cos-sdk-s3transfer==2.13.2',
1414
'jmespath>=0.10.0,<=1.0.1'
1515
]
1616

@@ -47,6 +47,7 @@ def get_version():
4747
'Programming Language :: Python :: 3.8',
4848
'Programming Language :: Python :: 3.9',
4949
'Programming Language :: Python :: 3.10',
50+
'Programming Language :: Python :: 3.11',
5051
],
5152
project_urls={
5253
'Documentation': 'https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-python',

0 commit comments

Comments
 (0)