Skip to content

Commit 5a01439

Browse files
chore(deps-dev): bump coverage from 7.10.6 to 7.10.7 in the pip group (#269)
Bumps the pip group with 1 update: [coverage](https://github.com/nedbat/coveragepy). Updates `coverage` from 7.10.6 to 7.10.7 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](coveragepy/coveragepy@7.10.6...7.10.7) --- updated-dependencies: - dependency-name: coverage dependency-version: 7.10.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: pip ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 26eabd1 commit 5a01439

File tree

13 files changed

+325
-207
lines changed

13 files changed

+325
-207
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ indent_style = space
1010
insert_final_newline = true
1111
trim_trailing_whitespace = true
1212

13+
[*.md]
14+
indent_size = 2
15+
indent_style = space
16+
1317
[LICENSE.txt]
1418
insert_final_newline = false
1519

.github/dependabot.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: github-actions
5+
directory: /
6+
groups:
7+
actions:
8+
patterns:
9+
- "*"
10+
schedule:
11+
# Check for updates to GitHub Actions every month
12+
interval: monthly
13+
- package-ecosystem: pip
14+
directory: /
15+
groups:
16+
pip:
17+
patterns:
18+
- "*"
19+
schedule:
20+
# Check for updates to GitHub Actions every month
21+
interval: monthly

.github/dependabot.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/checks.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
name: 'checks'
2+
name: checks
33
permissions:
44
contents: read
55
pull-requests: read
6-
'on':
6+
"on":
77
pull_request:
88
branches:
9-
- 'main'
9+
- main
1010

1111
jobs:
1212
conventional-commits:
@@ -16,15 +16,9 @@ jobs:
1616
uses: broadinstitute/shared-workflows/.github/workflows/conventional-commit.yaml@v5.0.1
1717
linting:
1818
uses: broadinstitute/shared-workflows/.github/workflows/python-lint.yaml@v5.0.1
19-
with:
20-
ruff_version: '0.8.6'
21-
use_pylama: false
22-
use_ruff: true
2319
pre-commit:
2420
uses: broadinstitute/shared-workflows/.github/workflows/pre-commit.yaml@v5.0.1
2521
unit-tests:
2622
uses: broadinstitute/shared-workflows/.github/workflows/python-unit-test.yaml@v5.0.1
2723
with:
2824
python_package_name: cert_manager
29-
run_coverage: false
30-
test_runner: pytest

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
name: 'deploy'
2+
name: deploy
33
permissions:
44
contents: read
55
pull-requests: read
6-
'on':
6+
"on":
77
push:
88
tags:
9-
- '[0-9]+.[0-9]+.[0-9]+'
9+
- "[0-9]+.[0-9]+.[0-9]+"
1010

1111
jobs:
1212
pypi_deploy:

.github/workflows/test_deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
name: 'test_deploy'
2+
name: test_deploy
33
permissions:
44
contents: read
55
pull-requests: read
6-
'on':
6+
"on":
77
push:
88
branches:
9-
- 'main'
9+
- main
1010
pull_request:
1111
branches:
12-
- 'main'
12+
- main
1313

1414
jobs:
1515
pypi_test_deploy:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v5.0.0
4+
rev: v6.0.0
55
hooks:
66
- id: check-added-large-files
77
- id: check-ast
@@ -27,7 +27,7 @@ repos:
2727
- -b main
2828
- id: trailing-whitespace
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.12.7
30+
rev: v0.13.1
3131
hooks:
3232
- id: ruff
3333
args: [--fix, --exit-non-zero-on-fix]

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"proseWrap": "always",
3+
"trailingComma": "es5"
4+
}

CHANGELOG.md

Lines changed: 110 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -6,119 +6,186 @@
66

77
**Implemented enhancements:**
88

9-
- feat: migrate Python linting to Ruff [\#201](https://github.com/broadinstitute/python-cert_manager/pull/201) ([coreone](https://github.com/coreone))
10-
- Implementation of the Person API [\#194](https://github.com/broadinstitute/python-cert_manager/pull/194) ([joachimBurket](https://github.com/joachimBurket))
9+
- feat: migrate Python linting to Ruff
10+
[\#201](https://github.com/broadinstitute/python-cert_manager/pull/201)
11+
([coreone](https://github.com/coreone))
12+
- Implementation of the Person API
13+
[\#194](https://github.com/broadinstitute/python-cert_manager/pull/194)
14+
([joachimBurket](https://github.com/joachimBurket))
1115

1216
**Fixed bugs:**
1317

14-
- fix: default encoding to ascii if not set [\#212](https://github.com/broadinstitute/python-cert_manager/pull/212) ([coreone](https://github.com/coreone))
18+
- fix: default encoding to ascii if not set
19+
[\#212](https://github.com/broadinstitute/python-cert_manager/pull/212)
20+
([coreone](https://github.com/coreone))
1521

1622
## [2.3.1](https://github.com/broadinstitute/python-cert_manager/tree/2.3.1) (2023-06-05)
1723

1824
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/2.3.0...2.3.1)
1925

2026
**Implemented enhancements:**
2127

22-
- Release 2.3.1 [\#181](https://github.com/broadinstitute/python-cert_manager/pull/181) ([coreone](https://github.com/coreone))
23-
- Fix linting and unit test bugs [\#156](https://github.com/broadinstitute/python-cert_manager/pull/156) ([coreone](https://github.com/coreone))
28+
- Release 2.3.1
29+
[\#181](https://github.com/broadinstitute/python-cert_manager/pull/181)
30+
([coreone](https://github.com/coreone))
31+
- Fix linting and unit test bugs
32+
[\#156](https://github.com/broadinstitute/python-cert_manager/pull/156)
33+
([coreone](https://github.com/coreone))
2434

2535
**Fixed bugs:**
2636

27-
- Fix pagination for ACMEAccount.find\(\) [\#173](https://github.com/broadinstitute/python-cert_manager/pull/173) ([jzmp](https://github.com/jzmp))
37+
- Fix pagination for ACMEAccount.find\(\)
38+
[\#173](https://github.com/broadinstitute/python-cert_manager/pull/173)
39+
([jzmp](https://github.com/jzmp))
2840

2941
**Closed issues:**
3042

31-
- New release to support pagination [\#178](https://github.com/broadinstitute/python-cert_manager/issues/178)
32-
- Version Bump needed [\#105](https://github.com/broadinstitute/python-cert_manager/issues/105)
43+
- New release to support pagination
44+
[\#178](https://github.com/broadinstitute/python-cert_manager/issues/178)
45+
- Version Bump needed
46+
[\#105](https://github.com/broadinstitute/python-cert_manager/issues/105)
3347

3448
## [2.3.0](https://github.com/broadinstitute/python-cert_manager/tree/2.3.0) (2022-09-12)
3549

3650
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/2.2.0...2.3.0)
3751

3852
**Implemented enhancements:**
3953

40-
- Ssl count [\#128](https://github.com/broadinstitute/python-cert_manager/pull/128) ([MoIn4096](https://github.com/MoIn4096))
41-
- Add renew method to SMIME [\#104](https://github.com/broadinstitute/python-cert_manager/pull/104) ([coreone](https://github.com/coreone))
42-
- Added the Report module to support the Sectigo /report endpoint [\#95](https://github.com/broadinstitute/python-cert_manager/pull/95) ([NateWerner](https://github.com/NateWerner))
43-
- Add support for domains endpoint [\#93](https://github.com/broadinstitute/python-cert_manager/pull/93) ([FISHMANPET](https://github.com/FISHMANPET))
54+
- Ssl count
55+
[\#128](https://github.com/broadinstitute/python-cert_manager/pull/128)
56+
([MoIn4096](https://github.com/MoIn4096))
57+
- Add renew method to SMIME
58+
[\#104](https://github.com/broadinstitute/python-cert_manager/pull/104)
59+
([coreone](https://github.com/coreone))
60+
- Added the Report module to support the Sectigo /report endpoint
61+
[\#95](https://github.com/broadinstitute/python-cert_manager/pull/95)
62+
([NateWerner](https://github.com/NateWerner))
63+
- Add support for domains endpoint
64+
[\#93](https://github.com/broadinstitute/python-cert_manager/pull/93)
65+
([FISHMANPET](https://github.com/FISHMANPET))
4466

4567
**Fixed bugs:**
4668

47-
- Fix certificate SANs [\#94](https://github.com/broadinstitute/python-cert_manager/pull/94) ([coreone](https://github.com/coreone))
69+
- Fix certificate SANs
70+
[\#94](https://github.com/broadinstitute/python-cert_manager/pull/94)
71+
([coreone](https://github.com/coreone))
4872

4973
**Closed issues:**
5074

51-
- SAN not being included in the cert [\#89](https://github.com/broadinstitute/python-cert_manager/issues/89)
52-
- Getting error 400 with sample from README [\#28](https://github.com/broadinstitute/python-cert_manager/issues/28)
75+
- SAN not being included in the cert
76+
[\#89](https://github.com/broadinstitute/python-cert_manager/issues/89)
77+
- Getting error 400 with sample from README
78+
[\#28](https://github.com/broadinstitute/python-cert_manager/issues/28)
5379

5480
## [2.2.0](https://github.com/broadinstitute/python-cert_manager/tree/2.2.0) (2022-03-01)
5581

5682
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/2.1.0...2.2.0)
5783

5884
**Implemented enhancements:**
5985

60-
- Add functionality to work with Admin endpoint [\#87](https://github.com/broadinstitute/python-cert_manager/pull/87) ([FISHMANPET](https://github.com/FISHMANPET))
86+
- Add functionality to work with Admin endpoint
87+
[\#87](https://github.com/broadinstitute/python-cert_manager/pull/87)
88+
([FISHMANPET](https://github.com/FISHMANPET))
6189

6290
## [2.1.0](https://github.com/broadinstitute/python-cert_manager/tree/2.1.0) (2021-12-06)
6391

6492
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/2.0.0...2.1.0)
6593

6694
**Implemented enhancements:**
6795

68-
- Move to f-strings [\#56](https://github.com/broadinstitute/python-cert_manager/pull/56) ([coreone](https://github.com/coreone))
69-
- First implementation of smime calls [\#39](https://github.com/broadinstitute/python-cert_manager/pull/39) ([joachimBurket](https://github.com/joachimBurket))
96+
- Move to f-strings
97+
[\#56](https://github.com/broadinstitute/python-cert_manager/pull/56)
98+
([coreone](https://github.com/coreone))
99+
- First implementation of smime calls
100+
[\#39](https://github.com/broadinstitute/python-cert_manager/pull/39)
101+
([joachimBurket](https://github.com/joachimBurket))
70102

71103
**Closed issues:**
72104

73-
- New release [\#61](https://github.com/broadinstitute/python-cert_manager/issues/61)
74-
- PyPi outdated version? [\#30](https://github.com/broadinstitute/python-cert_manager/issues/30)
105+
- New release
106+
[\#61](https://github.com/broadinstitute/python-cert_manager/issues/61)
107+
- PyPi outdated version?
108+
[\#30](https://github.com/broadinstitute/python-cert_manager/issues/30)
75109

76110
## [2.0.0](https://github.com/broadinstitute/python-cert_manager/tree/2.0.0) (2021-05-26)
77111

78112
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/1.0.0...2.0.0)
79113

80114
**Breaking changes:**
81115

82-
- Remove Python 2 support [\#17](https://github.com/broadinstitute/python-cert_manager/pull/17) ([coreone](https://github.com/coreone))
83-
- CircleCI update and remove support for Python 3.4 [\#11](https://github.com/broadinstitute/python-cert_manager/pull/11) ([coreone](https://github.com/coreone))
116+
- Remove Python 2 support
117+
[\#17](https://github.com/broadinstitute/python-cert_manager/pull/17)
118+
([coreone](https://github.com/coreone))
119+
- CircleCI update and remove support for Python 3.4
120+
[\#11](https://github.com/broadinstitute/python-cert_manager/pull/11)
121+
([coreone](https://github.com/coreone))
84122

85123
**Implemented enhancements:**
86124

87-
- Add extra format types [\#29](https://github.com/broadinstitute/python-cert_manager/pull/29) ([matejzero](https://github.com/matejzero))
88-
- Add custom\_fields handling to Certificates.enroll method [\#25](https://github.com/broadinstitute/python-cert_manager/pull/25) ([alextremblay](https://github.com/alextremblay))
89-
- Style cleanup, reduce to one paginate method, Python 3.9 testing [\#23](https://github.com/broadinstitute/python-cert_manager/pull/23) ([coreone](https://github.com/coreone))
90-
- Migrate to Poetry and GitHub Actions [\#21](https://github.com/broadinstitute/python-cert_manager/pull/21) ([coreone](https://github.com/coreone))
91-
- feat: Add external requester field [\#19](https://github.com/broadinstitute/python-cert_manager/pull/19) ([ravanapel](https://github.com/ravanapel))
92-
- Add support for ACME endpoint\(s\) [\#16](https://github.com/broadinstitute/python-cert_manager/pull/16) ([zmousm](https://github.com/zmousm))
93-
- Adding more features support in SSL certificates [\#15](https://github.com/broadinstitute/python-cert_manager/pull/15) ([trolldbois](https://github.com/trolldbois))
94-
- Start using CircleCI orb, disable TravisCI [\#10](https://github.com/broadinstitute/python-cert_manager/pull/10) ([coreone](https://github.com/coreone))
125+
- Add extra format types
126+
[\#29](https://github.com/broadinstitute/python-cert_manager/pull/29)
127+
([matejzero](https://github.com/matejzero))
128+
- Add custom_fields handling to Certificates.enroll method
129+
[\#25](https://github.com/broadinstitute/python-cert_manager/pull/25)
130+
([alextremblay](https://github.com/alextremblay))
131+
- Style cleanup, reduce to one paginate method, Python 3.9 testing
132+
[\#23](https://github.com/broadinstitute/python-cert_manager/pull/23)
133+
([coreone](https://github.com/coreone))
134+
- Migrate to Poetry and GitHub Actions
135+
[\#21](https://github.com/broadinstitute/python-cert_manager/pull/21)
136+
([coreone](https://github.com/coreone))
137+
- feat: Add external requester field
138+
[\#19](https://github.com/broadinstitute/python-cert_manager/pull/19)
139+
([ravanapel](https://github.com/ravanapel))
140+
- Add support for ACME endpoint\(s\)
141+
[\#16](https://github.com/broadinstitute/python-cert_manager/pull/16)
142+
([zmousm](https://github.com/zmousm))
143+
- Adding more features support in SSL certificates
144+
[\#15](https://github.com/broadinstitute/python-cert_manager/pull/15)
145+
([trolldbois](https://github.com/trolldbois))
146+
- Start using CircleCI orb, disable TravisCI
147+
[\#10](https://github.com/broadinstitute/python-cert_manager/pull/10)
148+
([coreone](https://github.com/coreone))
95149

96150
**Fixed bugs:**
97151

98-
- Remove custom HttpError exception [\#6](https://github.com/broadinstitute/python-cert_manager/issues/6)
99-
- Fix \#26, JSONDecodeError when receiving HTTP 204 empty response from API [\#27](https://github.com/broadinstitute/python-cert_manager/pull/27) ([alextremblay](https://github.com/alextremblay))
152+
- Remove custom HttpError exception
153+
[\#6](https://github.com/broadinstitute/python-cert_manager/issues/6)
154+
- Fix \#26, JSONDecodeError when receiving HTTP 204 empty response from API
155+
[\#27](https://github.com/broadinstitute/python-cert_manager/pull/27)
156+
([alextremblay](https://github.com/alextremblay))
100157

101158
**Closed issues:**
102159

103-
- JSONDecodeError when using the SSL.revoke method [\#26](https://github.com/broadinstitute/python-cert_manager/issues/26)
104-
- Add support for custom fields to Certificates.enroll [\#24](https://github.com/broadinstitute/python-cert_manager/issues/24)
105-
- Unable to specify External Requester [\#18](https://github.com/broadinstitute/python-cert_manager/issues/18)
160+
- JSONDecodeError when using the SSL.revoke method
161+
[\#26](https://github.com/broadinstitute/python-cert_manager/issues/26)
162+
- Add support for custom fields to Certificates.enroll
163+
[\#24](https://github.com/broadinstitute/python-cert_manager/issues/24)
164+
- Unable to specify External Requester
165+
[\#18](https://github.com/broadinstitute/python-cert_manager/issues/18)
106166

107167
## [1.0.0](https://github.com/broadinstitute/python-cert_manager/tree/1.0.0) (2019-04-04)
108168

109169
[Full Changelog](https://github.com/broadinstitute/python-cert_manager/compare/d2c8e5d7000efe2afdd8fcec69d2ef4033ebdd3f...1.0.0)
110170

111171
**Implemented enhancements:**
112172

113-
- Fix versioning of the package [\#2](https://github.com/broadinstitute/python-cert_manager/issues/2)
114-
- Convert to 2.1 CircleCI config [\#8](https://github.com/broadinstitute/python-cert_manager/pull/8) ([coreone](https://github.com/coreone))
115-
- Replace custom exception [\#7](https://github.com/broadinstitute/python-cert_manager/pull/7) ([coreone](https://github.com/coreone))
116-
- Fix install and versioning, add user-agent [\#5](https://github.com/broadinstitute/python-cert_manager/pull/5) ([coreone](https://github.com/coreone))
173+
- Fix versioning of the package
174+
[\#2](https://github.com/broadinstitute/python-cert_manager/issues/2)
175+
- Convert to 2.1 CircleCI config
176+
[\#8](https://github.com/broadinstitute/python-cert_manager/pull/8)
177+
([coreone](https://github.com/coreone))
178+
- Replace custom exception
179+
[\#7](https://github.com/broadinstitute/python-cert_manager/pull/7)
180+
([coreone](https://github.com/coreone))
181+
- Fix install and versioning, add user-agent
182+
[\#5](https://github.com/broadinstitute/python-cert_manager/pull/5)
183+
([coreone](https://github.com/coreone))
117184

118185
**Fixed bugs:**
119186

120-
- Bugfixes [\#4](https://github.com/broadinstitute/python-cert_manager/pull/4) ([coreone](https://github.com/coreone))
187+
- Bugfixes [\#4](https://github.com/broadinstitute/python-cert_manager/pull/4)
188+
([coreone](https://github.com/coreone))
121189

122-
123-
124-
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
190+
\* _This Changelog was automatically generated by
191+
[github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_

0 commit comments

Comments
 (0)