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

Making a new release (0.11.0.0) #403

Merged
merged 5 commits into from
Aug 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on the [KeepAChangeLog] project.

[KeepAChangeLog]: http://keepachangelog.com/

## 0.11.0.0 [UNRELEASED]
## 0.11.0.0 [2017-07-07]

### Changed
- [#318]: `oic.utils.authn.saml` raises `ImportError` on import if optional `saml2` dependency is not present.
Expand All @@ -19,6 +19,7 @@ The format is based on the [KeepAChangeLog] project.
- [#392]: Made sid creation simpler and faster

### Fixed
- [#317]: Resolved an `AttibuteError` exception under Python 2.
- [#313]: Catch exception correctly
- [#319]: Fix sanitize on strings starting with "B" or "U"
- [#330]: Fix client_management user input being eval'd under Python 2
Expand All @@ -32,6 +33,7 @@ The format is based on the [KeepAChangeLog] project.
- [#349]: Changed crypto algorithm used by `oic.utils.sdb.Crypt` for token encryption to Fernet. Old stored tokens are incompatible.
- [#363]: Fixed IV reuse for CookieDealer class. Replaced the encrypt-then-mac construction with a proper AEAD (AES-SIV).

[#317]: https://github.com/OpenIDC/pyoidc/pull/317
[#313]: https://github.com/OpenIDC/pyoidc/issues/313
[#387]: https://github.com/OpenIDC/pyoidc/pull/387
[#318]: https://github.com/OpenIDC/pyoidc/pull/318
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ check-isort:
check-pylama:
@pipenv run pylama $(OICDIR) $(TESTDIR)
.PHONY: check-pylama

release:
@pipenv run python setup.py sdist upload -r pypi
.PHONY: release
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mock = "*"
pylama = "*"
pytest = "*"
pytest-cov = "*"
responses = "*"
responses = "==0.6.0"
sphinx-autobuild = "*"
testfixtures = "*"
tox = "*"
Expand Down
4 changes: 2 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def run_tests(self):
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"],
extras_require={
'develop': ["cherrypy==3.2.4"],
Expand Down
2 changes: 1 addition & 1 deletion src/oic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import random as rnd

__author__ = 'Roland Hedberg'
__version__ = '0.10.0.0'
__version__ = '0.11.0.0'


OIDCONF_PATTERN = "%s/.well-known/openid-configuration"
Expand Down
1 change: 0 additions & 1 deletion tests/test_oic_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,6 @@ def test_verify_sector_identifier_nonreachable(self):

assert len(logcap.records) == 0

@pytest.mark.skip(reason='https://github.com/OpenIDC/pyoidc/issues/402')
def test_verify_sector_identifier_error(self):
rr = RegistrationRequest(operation="register", sector_identifier_uri="https://example.com")
error = ConnectionError('broken connection')
Expand Down