rele v0.4.0 Release Notes

Release Date: 2019-06-17 // almost 5 years ago
    • Set DEFAULT_ACK_DEADLINE (#49)
    • Filter by message attributes (#66)
    • πŸ’₯ BREAKING: All RelΓ© settings are defined in a dict (#60)

    Old structure:

    from google.oauth2 import service\_accountRELE\_GC\_CREDENTIALS = service\_account.Credentials.from\_service\_account\_file( 'rele/settings/dummy-credentials.json')RELE\_GC\_PROJECT\_ID = 'dummy-project-id'
    

    πŸ†• New structure:

    from google.oauth2 import service\_accountRELE = { 'GC\_CREDENTIALS': service\_account.Credentials.from\_service\_account\_file( 'rele/settings/dummy-credentials.json' ), 'GC\_PROJECT\_ID': 'dummy-project-id', 'MIDDLEWARE': ['rele.contrib.LoggingMiddleware', 'rele.contrib.DjangoDBMiddleware',], 'SUB\_PREFIX': 'delivery', 'APP\_NAME': 'delivery', }
    
    • rele.contrib.middleware (#55)
    • Prefix argument in sub decorator (#47)
    • βž• Add timestamp to the published message (#42)
    • πŸ’₯ BREAKING: Explicit publisher and subscriber configuration (#43)
    • πŸ“š Sphinx documentation (#27, #34, #40, #41)
    • Contributing guidelines (#32)