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

[PLAY-2375] -- Sanitize Storage URIs #54

Merged
merged 27 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c68bdbc
Start adding get_sanitized_uri methods, so that the backend can sanit…
shroudofthurin Mar 30, 2020
d8b75a4
Added get_sanitized_uri method to ftp storage.
shroudofthurin Mar 30, 2020
f64a7c6
Create url_parser lib that can be used to sanitize storage uris.
shroudofthurin Mar 31, 2020
9caea27
Update storage classes to use new url parser library
shroudofthurin Mar 31, 2020
2cdda81
Update google cloud storage to have get_sanitized_uri method
shroudofthurin Mar 31, 2020
9669dce
Update local storage to have get_sanitized_uri method
shroudofthurin Mar 31, 2020
7ad1bb3
Update swift storage to have get_sanitized_uri method
shroudofthurin Apr 1, 2020
b2ddf1b
Fix mypy errors
shroudofthurin Apr 1, 2020
a3ad578
Remove some redundancies, as per reviewer's request.
shroudofthurin Apr 2, 2020
8d62fff
Ensure that download_url_key is removed from the sanitized URL if pre…
shroudofthurin Apr 2, 2020
8695207
Rename library helper to something more explicit, as per reviewer's r…
shroudofthurin Apr 2, 2020
d80a51e
Rename library helper tests to reflect the changes made to file.
shroudofthurin Apr 3, 2020
a598144
Add new function to url_parser that only returns the scheme, hostname…
shroudofthurin Apr 3, 2020
7df52df
Make the default implementation of get_sanitized_uri be overly restri…
shroudofthurin Apr 6, 2020
6e4ab70
Add get_santized_uri implementation to s3.
shroudofthurin Apr 6, 2020
4a8e9d9
Fix mypy errors
shroudofthurin Apr 6, 2020
e8ad3fc
Update test name to indicate what the expected behavior is, as per re…
shroudofthurin Apr 6, 2020
e0906fe
Move Swift/CloudFiles specific code into their specific implementatio…
shroudofthurin Apr 7, 2020
d5b3d43
Rename url_parser function, as per reviewer's request.
shroudofthurin Apr 7, 2020
03a3bc2
Fix mypy errors.
shroudofthurin Apr 7, 2020
aee6715
Rename url_parser function, as per reviewer's request.
shroudofthurin Apr 7, 2020
96efff4
Fix mypy errors.
shroudofthurin Apr 7, 2020
77aaa07
Bumping version to v0.14.0.
shroudofthurin Apr 9, 2020
fe50ae6
Document the newly added function, get_sanitized_uri().
shroudofthurin Apr 9, 2020
9221f65
FIx spelling mistake
shroudofthurin Apr 9, 2020
35e928a
Since the README on master for the GitHub project is the most accessi…
shroudofthurin Apr 9, 2020
92042b8
Document the url parser library in the READ.me docs, as per reviewer'…
shroudofthurin Apr 9, 2020
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
Bumping version to v0.14.0.
[PLAY-2375]
  • Loading branch information
shroudofthurin committed Apr 9, 2020
commit 77aaa07e4c41eb764cd5a273312c43ea61f9df4c
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Install via pip:
pip install object_storage
```

The current version is `0.13.3`.
joshustudio marked this conversation as resolved.
Show resolved Hide resolved
The current version is `0.14.0`.

## Quick Start ##

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]

setup(name="object_storage",
version="0.13.3",
version="0.14.0",
description="Python library for accessing files over various file transfer protocols.",
url="https://github.com/ustudio/storage",
packages=["storage"],
Expand Down