Skip to content
This repository was archived by the owner on Oct 3, 2019. It is now read-only.

Initial Update#12

Open
pyup-bot wants to merge 4 commits into
masterfrom
pyup-initial-update
Open

Initial Update#12
pyup-bot wants to merge 4 commits into
masterfrom
pyup-initial-update

Conversation

@pyup-bot

@pyup-bot pyup-bot commented Jan 4, 2019

Copy link
Copy Markdown

This PR sets up pyup.io on this repo and updates all dependencies at once, in a single branch.

Subsequent pull requests will update one dependency at a time, each in their own branch. If you want to start with that right away, simply close this PR.

Update dj-database-url from 0.5.0 to 0.5.0.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update mock from 2.0.0 to 2.0.0.

The bot wasn't able to find a changelog for this release. Got an idea?

Links

Update rollbar from 0.14.6 to 0.14.6.

Changelog

0.14.0

- Create the configuration options, `capture_username` and `capture_email`. Prior to this release,
if we gather person data automatically, we would try to capture the id, email, and username.
Starting with this release by default we will only capture the id. If you set `capture_username`
to `True` then we will also attempt to capture the username. Similarly for `capture_email` with
the email. (See [262](https://github.com/rollbar/pyrollbar/pull/262))
- Create the configuration option `capture_ip`. This can take one of three values: `True`,
`'anonymize'`, or `False`. This controls how we handle IP addresses that are captured from
requests. If `True`, then we will send the full IP address. This is the current behaviour and the
default. If set to the string `'anonymize'` which is also available as the constant `ANONYMIZE` on
the `rollbar` module, we will mask out the least significant bits of the IP address. If set to
`False`, then we will not capture the IP address. (See [262](https://github.com/rollbar/pyrollbar/pull/262))
- Fix `request.files_keys` for Flask [263](https://github.com/rollbar/pyrollbar/pull/263)
- If you call `init` multiple times we will update the settings at each call. Prior to
this release we emitted a warning and did not update settings. [259](https://github.com/rollbar/pyrollbar/pull/259)
- Better Tornado support [256](https://github.com/rollbar/pyrollbar/pull/256)

0.13.18

- See Release Notes

0.13.17

- Fix deprecation warning related to Logging.warn
- Fix bug where non-copyable objects could cause an exception if they end up trying to get passed to
one of the logging methods.
- Fix bug where both `trace` and `trace_chain` could appear in the final payload, which is not
allowed by the API.

0.13.16

- Fix PyPI documentation

0.13.15

- Fix shortener issue for Python 3

0.13.14

- Fix bug that caused some payload objects to be turned into the wrong type when
shortening is applied. This would lead to API rejections. See [200](https://github.com/rollbar/pyrollbar/pull/200)
- Add `suppress_reinit_warning` option if you want to allow calling init twice. See [198](https://github.com/rollbar/pyrollbar/pull/198)
- Pass through keyword arguments from the logging handler to the underling Rollbar init call. See
[203](https://github.com/rollbar/pyrollbar/pull/203)

0.13.13

- Add support for AWS Lambda. See [191](https://github.com/rollbar/pyrollbar/pull/191)

0.13.12

- Remove the Django request body from the payload as it can contain sensitive data. See [174](https://github.com/rollbar/pyrollbar/pull/174)
- Allow users to shorten arbitrary parts of the payload. See [173](https://github.com/rollbar/pyrollbar/pull/173)
- Fix a Django deprecation warning. See [165](https://github.com/rollbar/pyrollbar/pull/165)

0.13.11

- Handle environments where `sys.argv` does not exist. See [131](https://github.com/rollbar/pyrollbar/pull/131)

0.13.10

- Gather request method from WebOb requests. See [152](https://github.com/rollbar/pyrollbar/pull/152)

0.13.9

- Change `_check_config()` to deal with agent handler. See [147](https://github.com/rollbar/pyrollbar/pull/147)
- Fix settings values not being booleans in Pyramid. See [150](https://github.com/rollbar/pyrollbar/pull/150)

0.13.8

- Fix regression from 0.13.7. See [141](https://github.com/rollbar/pyrollbar/pull/141)

0.13.7

- Update Django middleware to support Django 1.10+. See [138](https://github.com/rollbar/pyrollbar/pull/138)

0.13.6

- Fixed a referenced before assignment in the failsafe. See [136](https://github.com/rollbar/pyrollbar/pull/136)

0.13.5

- Fixed record message formatting issues breaking the log handler's history. See [135](https://github.com/rollbar/pyrollbar/pull/135)

0.13.4

- Fixed failsafe handling for payloads that are too large. See [133](https://github.com/rollbar/pyrollbar/pull/133)

0.13.3

- Improved handling of Enums. See [121](https://github.com/rollbar/pyrollbar/pull/121)

0.13.2

- Improved handling of Nan and (Negative)Infinity. See [117](https://github.com/rollbar/pyrollbar/pull/117)
- RollbarHandler now ignores log records from Rollbar. See [118](https://github.com/rollbar/pyrollbar/pull/118)

0.13.1

- Failsafe handling for payloads that are too large. See [116](https://github.com/rollbar/pyrollbar/pull/116)
- Failsafe Behavior
 - Log an error containing the original payload and the UUID from it
 - Send a new payload to Rollbar with the custom attribute containing the UUID and host from the original payload

0.13.0

- Frame payload refactor and varargs scrubbing. See [113](https://github.com/rollbar/pyrollbar/pull/113)
- Frame Payload Changes
 - remove args and kwargs
 - add argspec as the list of argument names to the function call
 - add varargspec as the name of the list containing the arbitrary unnamed positional arguments to the function call if any exist
 - add keywordspec as the name of the object containing the arbitrary keyword arguments to the function call if any exist
- Other Changes:
 - Arguments with default values are no longer removed from args and placed into kwargs
 - varargs are now scrubbable and scrubbed by default
- Switched to using a Session object to perform HTTPS requests to optimize for keepalive connections. See [114](https://github.com/rollbar/pyrollbar/pull/114)

0.12.1

- Keep blank values from request query strings when scrubbing URLs. See [110](https://github.com/rollbar/pyrollbar/pull/110)

0.12.0

- Fix and update Twisted support. See [109](https://github.com/rollbar/pyrollbar/pull/109)
- **Breaking Changes**: [treq](https://github.com/twisted/treq) is now required for using Twisted with pyrollbar.

0.11.6

- Improve object handling for SQLAlchemy. See [108](https://github.com/rollbar/pyrollbar/pull/108)

0.11.5

- Fixed a bug when custom `__repr__()` calls resulted in an exception being thrown. See [102](https://github.com/rollbar/pyrollbar/pull/102)

0.11.4

- Revert changes from 0.11.3 since they ended-up having the unintended side effect by that exceptions messages weren't processing as expected.
- Update settings in init first so that custom scrub_fields entries are handled correctly

0.11.3

- Obey safe repr for exceptions.  See [91](https://github.com/rollbar/pyrollbar/pull/91)

0.11.2

- Fixed a bug when calling logging.exception() when not in an exception handler.  Now it correctly determines it doesn't have any exception info and uses report_message() instead of report_exc_info().

0.11.1

- Added a new configuration option to expose the serializer's `whitelisted_types` param
- Allows users to whitelist types to be serialized using `repr(obj)` instead of `str(type(obj))`
- Fixed a bug that was not taking the `safe_repr` option into account. See [87](https://github.com/rollbar/pyrollbar/pull/87)

0.11.0

- Overhauled the scrubbing and serialization mechanisms to provide deep object scrubbing and better handling of UTF-8 data from local variables. See [75](https://github.com/rollbar/pyrollbar/pull/75)
- This fixes a bunch of problems with reporting local variables, including `UnicodeEncodeError`s and attempting to read variables after the thread they were in has died.
- Local variables and payload data is now sent over in their original structure.
- If a variable was a `dict`, it will be transmitted as a `dict` instead of turned into a string representation of the variable.
- The entire payload is now scrubbed and URL password fields are scrubbed as well.
- Added a Django example.
- Wrote many, many more tests :)
- Integrated the `six` library to provide cleaner support for Python3.
- Added some additional scrub fields.

0.10.1

- Added a warning message if `init()` is called more than once.

0.10.0

- Added support for Twisted framework. See [69](https://github.com/rollbar/pyrollbar/pull/69)
- Fix a bug that was causing max recursion errors while collecting local variables. See [77](https://github.com/rollbar/pyrollbar/pull/77)
- Added a configuration option, `safe_repr: True` which will cause payload serialization to use the type name for non-built-in objects.
 This option defaults to `True` which may cause data reported to Rollbar to contain less information for custom types.
 Prior to this change, serialization of custom objects called `__repr__()` which may have had undesired side effects.
- Fixed a bug that did not correctly handle anonymous tuple arguments while gathering local variables.

0.9.14

- Fix logging loop when using Flask in a non-request context, and also using the Rollbar logging handler. See [68](https://github.com/rollbar/pyrollbar/pull/68)

0.9.13

- If present, get request from log record. Otherwise try to guess current request as usual.

0.9.12

- Fix a bug that was causing a crash while reporting an error that happened in a Werkzeug request that had no `request.json`. See [64](https://github.com/rollbar/pyrollbar/pull/64)

0.9.11

- Implement workarounds for NaN and Infinity "numbers" in payloads. See [62](https://github.com/rollbar/pyrollbar/pull/62)

0.9.10

- Fix request data collection in Flask 0.9. See [61](https://github.com/rollbar/pyrollbar/pull/61)

0.9.9

- Add exception handler for RQ (requires some instrumentation). See [57](https://github.com/rollbar/pyrollbar/pull/57)
- Scrub fields inside `extra_data`
- Gather the process PID and report it along with the other 'server' data

0.9.8

- Support bare WSGI requests ([55](https://github.com/rollbar/pyrollbar/pull/55))

0.9.7

- Add support for Google App Engine ([53](https://github.com/rollbar/pyrollbar/pull/53))

0.9.6

- Fix memory leak when using the RollbarHandler logging handler (see [43](https://github.com/rollbar/pyrollbar/pull/43))
- Fix bug where named function arguments were not scrubbed correctly

0.9.5

- Fix bug with local variable gathering that was breaking when getting the arguments for a class constructor.

0.9.4

- Request headers are now scrubbed, [pr41](https://github.com/rollbar/pyrollbar/pull/41).

0.9.3

- `exception_level_filters` can now take a string that defines the class to filter, [38](https://github.com/rollbar/pyrollbar/pull/38).

0.9.2

- Added an option to disable SSL certificate verification, [36](https://github.com/rollbar/pyrollbar/pull/36).
- Added `__version__` specifier to `__init__.py`.

0.9.1

New features:

- For Tornado requests, gather the request start time. See [33](https://github.com/rollbar/pyrollbar/pull/33)
- Add handler which uses Tornado's `AsyncHTTPClient`. To use this, set your 'handler' to 'tornado'. See [34](https://github.com/rollbar/pyrollbar/pull/34)

0.9.0

- Improvements to RollbarHandler logging handler. It now:
- extracts more information out of each record (i.e. metadata like pathname and creation time)
- uses the format string, with arguments not yet replaced, as the main message body. This will result in much better grouping in Rollbar.

Note about upgrading from 0.8.x: unless you are using RollbarHandler, there are no breaking changes. If you are using RolbarHandler, then this will change the way your data appears in Rollbar (to the better, in our opinion).

0.8.3

- Provide a way to blacklist types from being repr()'d while gathering local variables.

0.8.2

- Fix uncaught ImproperlyConfigured exception when importing Rollbar in a Django REST Framework environment without a settings module loaded ([28](https://github.com/rollbar/pyrollbar/pull/28))

0.8.1

- Only attempt local variable extraction if traceback frames are of the correct type, print a warning otherwise
- Fix JSON request param extraction for Werkzeug requests (Pyramid, Flask, etc)

0.8.0

- Local variables collection now enabled by default.
- Fixed scrubbing for utf8 param names.

0.7.6

- Added local variables for all in-project frames and the last frame.

0.7.5

- Initial support for sending args and kwargs for traceback frames.
- Optimization to send the access token in a header.

0.7.4

- Level kwarg added to `rollbar.report_exc_info()` ([22](https://github.com/rollbar/pyrollbar/pull/22))

0.7.3

- Added in an optional `endpoint` parameter to `search_items()`.

0.7.2

- Fix for scrubbing werkzeug json bodies ([20](https://github.com/rollbar/pyrollbar/pull/20))

0.7.1

- Support scrubbing for werkzeug json bodies ([19](https://github.com/rollbar/pyrollbar/pull/19))

0.7.0

- Python 3 support
- Now support extracting data from Django REST framework requests
- New `enabled` configuration setting

0.6.2

- Fixed json request data formatting for reports in Bottle requests
- Now send json request data for Django and Pyramid apps
- Set framework and request context properly for all reports in Flask and Bottle apps

0.6.1

- Added Django, Pyramid, Flask and Bottle support for default contexts.

0.6.0

- `report_message()` now returns the UUID of the reported occurrence.

0.5.14

- Fix bug with non-JSON post data in Flask
- Add slightly better integration with Flask. See [rollbar-flask-example](https://github.com/rollbar/rollbar-flask-example) for example usage.

0.5.13

- Collect JSON post data in Flask when mimetype is `application/json`

0.5.12

- Add sys.argv to server data

0.5.11

- Don't report bottle.BaseResponse exceptions in the bottle plugin

0.5.10

- Added `code_version` configuration setting
- Added support for bottle request objects

0.5.9

- Added a command line interface for reporting messages to Rollbar

0.5.8

- Added `allow_logging_basic_config` config flag for compatability with Flask. If using Flask, set to False.

0.5.7

- Added `exception_level_filters` configuration setting to customize the level that specific exceptions are reported as.

0.5.6

- First argument to `rollbar.report_exc_info()` is now optional. You can now call it with no arguments from within an `except` block, and it will behave is if you had called like `rollbar.report_exc_info(sys.exc_info())`

0.5.5

- Support for ignoring exceptions by setting `exc._rollbar_ignore = True`. Such exceptions reported through rollbar.report_exc_info() -- which is used under the hood in the Django and Pyramid middlewares -- will be ignored instead of reported.

0.5.4

- Django: catch exceptions when patching the debugview, for better support for django 1.3.

0.5.3

- Fixed bug when reporting messages without a request object

0.5.2

- Fixed bug where django debug page can get patched twice

0.5.1

- Catching possible malformed API responses

0.5.0

- Rename to rollbar

0.4.1

- report_exc_info() now takes two additional named args: `extra_data` and `payload_data`, like report_message().
- on 429 response (over rate limit), log a warning but don't parse and print an exception.

0.3.2

- Added new default scrub fields

0.3.1

- Fixed pypi package

0.3.0

- Merge django-ratchet and pyramid_ratchet into pyratchet
- Add ability to write to a ratchet-agent log file

0.2.0

- Add "person" support

0.1.14

- Added payload_data arg to report_message()

0.1.13

- Added extra_data arg to report_message()

0.1.12

- Use custom JSON encoder to skip objects that can't be encoded.
- Bump default timeout from 1 to 3 seconds.

0.1.11

- Sensitive params now scrubbed out of POST. Param name list is customizable via the `scrub_fields` config option.

0.1.10

- Add support for Tornado request objects (`tornado.httpserver.HTTPRequest`)

0.1.9

- Fix support for Pyramid request objects

0.1.8

- Add support for Django request objects
Links

Update arrow from 0.12.1 to 0.12.1.

Changelog

0.12.0

- [FIX] Compatibility fix for Python 2.x

0.11.0

- [FIX] Fix grammar of ArabicLocale
- [NEW] Add Nepali Locale
- [FIX] Fix month name + rename AustriaLocale -> AustrianLocale
- [FIX] Fix typo in Basque Locale
- [FIX] Fix grammar in PortugueseBrazilian locale
- [FIX] Remove pip --user-mirrors flag
- [NEW] Add Indonesian Locale

0.10.0

- [FIX] Fix getattr off by one for quarter
- [FIX] Fix negative offset for UTC
- [FIX] Update arrow.py

0.9.0

- [NEW] Remove duplicate code
- [NEW] Support gnu date iso 8601
- [NEW] Add support for universal wheels
- [NEW] Slovenian locale
- [NEW] Slovak locale
- [NEW] Romanian locale
- [FIX] respect limit even if end is defined range
- [FIX] Separate replace & shift functions
- [NEW] Added tox
- [FIX] Fix supported Python versions in documentation
- [NEW] Azerbaijani locale added, locale issue fixed in Turkish.
- [FIX] Format ParserError's raise message

0.8.0

- []

0.7.1

- [NEW] Esperanto locale (batisteo)

0.7.0

- [FIX] Parse localized strings 228 (swistakm)
- [FIX] Modify tzinfo parameter in `get` api 221 (bottleimp)
- [FIX] Fix Czech locale (PrehistoricTeam)
- [FIX] Raise TypeError when adding/subtracting non-dates (itsmeolivia)
- [FIX] Fix pytz conversion error (Kudo)
- [FIX] Fix overzealous time truncation in span_range (kdeldycke)
- [NEW] Humanize for time duration 232 (ybrs)
- [NEW] Add Thai locale (sipp11)
- [NEW] Adding Belarusian (be) locale (oire)
- [NEW] Search date in strings (beenje)
- [NEW] Note that arrow's tokens differ from strptime's. (offby1)

0.6.0

- [FIX] Added support for Python 3
- [FIX] Avoid truncating oversized epoch timestamps. Fixes 216.
- [FIX] Fixed month abbreviations for Ukrainian
- [FIX] Fix typo timezone
- [FIX] A couple of dialect fixes and two new languages
- [FIX] Spanish locale: `Miercoles` should have acute accent
- [Fix] Fix Finnish grammar
- [FIX] Fix typo in 'Arrow.floor' docstring
- [FIX] Use read() utility to open README
- [FIX] span_range for week frame
- [NEW] Add minimal support for fractional seconds longer than six digits.
- [NEW] Adding locale support for Marathi (mr)
- [NEW] Add count argument to span method
- [NEW] Improved docs

0.5.1

- [FIX] test the behavior of simplejson instead of calling for_json directly (tonyseek)
- [FIX] Add Hebrew Locale (doodyparizada)
- [FIX] Update documentation location (andrewelkins)
- [FIX] Update setup.py Development Status level (andrewelkins)
- [FIX] Case insensitive month match (cshowe)

0.5.0

- [NEW] struct_time addition. (mhworth)
- [NEW] Version grep (eirnym)
- [NEW] Default to ISO-8601 format (emonty)
- [NEW] Raise TypeError on comparison (sniekamp)
- [NEW] Adding Macedonian(mk) locale (krisfremen)
- [FIX] Fix for ISO seconds and fractional seconds (sdispater) (andrewelkins)
- [FIX] Use correct Dutch wording for "hours" (wbolster)
- [FIX] Complete the list of english locales (indorilftw)
- [FIX] Change README to reStructuredText (nyuszika7h)
- [FIX] Parse lower-cased 'h' (tamentis)
- [FIX] Slight modifications to Dutch locale (nvie)

0.4.4

- [NEW] Include the docs in the released tarball
- [NEW] Czech localization Czech localization for Arrow
- [NEW] Add fa_ir to locales
- [FIX] Fixes parsing of time strings with a final Z
- [FIX] Fixes ISO parsing and formatting for fractional seconds
- [FIX] test_fromtimestamp sp
- [FIX] some typos fixed
- [FIX] removed an unused import statement
- [FIX] docs table fix
- [FIX] Issue with specify 'X' template and no template at all to arrow.get
- [FIX] Fix "import" typo in docs/index.rst
- [FIX] Fix unit tests for zero passed
- [FIX] Update layout.html
- [FIX] In Norwegian and new Norwegian months and weekdays should not be capitalized
- [FIX] Fixed discrepancy between specifying 'X' to arrow.get and specifying no template

0.4.3

- [NEW] Turkish locale (Emre)
- [NEW] Arabic locale (Mosab Ahmad)
- [NEW] Danish locale (Holmars)
- [NEW] Icelandic locale (Holmars)
- [NEW] Hindi locale (Atmb4u)
- [NEW] Malayalam locale (Atmb4u)
- [NEW] Finnish locale (Stormpat)
- [NEW] Portuguese locale (Danielcorreia)
- [NEW] ``h`` and ``hh`` strings are now supported (Averyonghub)
- [FIX] An incorrect inflection in the Polish locale has been fixed (Avalanchy)
- [FIX] ``arrow.get`` now properly handles ``Date``s (Jaapz)
- [FIX] Tests are now declared in ``setup.py`` and the manifest (Pypingou)
- [FIX] ``__version__`` has been added to ``__init__.py`` (Sametmax)
- [FIX] ISO 8601 strings can be parsed without a separator (Ivandiguisto / Root)
- [FIX] Documentation is now more clear regarding some inputs on ``arrow.get`` (Eriktaubeneck)
- [FIX] Some documentation links have been fixed (Vrutsky)
- [FIX] Error messages for parse errors are now more descriptive (Maciej Albin)
- [FIX] The parser now correctly checks for separators in strings (Mschwager)

0.4.2

- [NEW] Factory ``get`` method now accepts a single ``Arrow`` argument.
- [NEW] Tokens SSSS, SSSSS and SSSSSS are supported in parsing.
- [NEW] ``Arrow`` objects have a ``float_timestamp`` property.
- [NEW] Vietnamese locale (Iu1nguoi)
- [NEW] Factory ``get`` method now accepts a list of format strings (Dgilland)
- [NEW] A MANIFEST.in file has been added (Pypingou)
- [NEW] Tests can be run directly from ``setup.py`` (Pypingou)
- [FIX] Arrow docs now list 'day of week' format tokens correctly (Rudolphfroger)
- [FIX] Several issues with the Korean locale have been resolved (Yoloseem)
- [FIX] ``humanize`` now correctly returns unicode (Shvechikov)
- [FIX] ``Arrow`` objects now pickle / unpickle correctly (Yoloseem)

0.4.1

- [NEW] Table / explanation of formatting & parsing tokens in docs
- [NEW] Brazilian locale (Augusto2112)
- [NEW] Dutch locale (OrangeTux)
- [NEW] Italian locale (Pertux)
- [NEW] Austrain locale (LeChewbacca)
- [NEW] Tagalog locale (Marksteve)
- [FIX] Corrected spelling and day numbers in German locale (LeChewbacca)
- [FIX] Factory ``get`` method should now handle unicode strings correctly (Bwells)
- [FIX] Midnight and noon should now parse and format correctly (Bwells)

0.4.0

- [NEW] Format-free ISO-8601 parsing in factory ``get`` method
- [NEW] Support for 'week' / 'weeks' in ``span``, ``range``, ``span_range``, ``floor`` and ``ceil``
- [NEW] Support for 'weeks' in ``replace``
- [NEW] Norwegian locale (Martinp)
- [NEW] Japanese locale (CortYuming)
- [FIX] Timezones no longer show the wrong sign when formatted (Bean)
- [FIX] Microseconds are parsed correctly from strings (Bsidhom)
- [FIX] Locale day-of-week is no longer off by one (Cynddl)
- [FIX] Corrected plurals of Ukrainian and Russian nouns (Catchagain)
- [CHANGE] Old 0.1 ``arrow`` module method removed
- [CHANGE] Dropped timestamp support in ``range`` and ``span_range`` (never worked correctly)
- [CHANGE] Dropped parsing of single string as tz string in factory ``get`` method (replaced by ISO-8601)

0.3.5

- [NEW] French locale (Cynddl)
- [NEW] Spanish locale (Slapresta)
- [FIX] Ranges handle multiple timezones correctly (Ftobia)

0.3.4

- [FIX] Humanize no longer sometimes returns the wrong month delta
- [FIX] ``__format__`` works correctly with no format string

0.3.3

- [NEW] Python 2.6 support
- [NEW] Initial support for locale-based parsing and formatting
- [NEW] ArrowFactory class, now proxied as the module API
- [NEW] ``factory`` api method to obtain a factory for a custom type
- [FIX] Python 3 support and tests completely ironed out

0.3.2

- [NEW] Python 3+ support

0.3.1

- [FIX] The old ``arrow`` module function handles timestamps correctly as it used to

0.3.0

- [NEW] ``Arrow.replace`` method
- [NEW] Accept timestamps, datetimes and Arrows for datetime inputs, where reasonable
- [FIX] ``range`` and ``span_range`` respect end and limit parameters correctly
- [CHANGE] Arrow objects are no longer mutable
- [CHANGE] Plural attribute name semantics altered: single -> absolute, plural -> relative
- [CHANGE] Plural names no longer supported as properties (e.g. ``arrow.utcnow().years``)

0.2.1

- [NEW] Support for localized humanization
- [NEW] English, Russian, Greek, Korean, Chinese locales

0.2.0

- **REWRITE**
- [NEW] Date parsing
- [NEW] Date formatting
- [NEW] ``floor``, ``ceil`` and ``span`` methods
- [NEW] ``datetime`` interface implementation
- [NEW] ``clone`` method
- [NEW] ``get``, ``now`` and ``utcnow`` API methods

0.1.6

- [NEW] Humanized time deltas
- [NEW] ``__eq__`` implemented
- [FIX] Issues with conversions related to daylight savings time resolved
- [CHANGE] ``__str__`` uses ISO formatting

0.1.5

- **Started tracking changes**
- [NEW] Parsing of ISO-formatted time zone offsets (e.g. '+02:30', '-05:00')
- [NEW] Resolved some issues with timestamps and delta / Olson time zones
Links

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant