Skip to content

Releases: ccnmtl/ctlsettings

0.4.7

Choose a tag to compare

@nikolas nikolas released this 15 Jun 14:47
2cc5572
  • Turn off debug=True for sentry staging setup.

0.4.6

Choose a tag to compare

@nikolas nikolas released this 07 Jan 20:32
09f74f9
  • Removed dependency on django-stagingcontext
  • Updated S3Storage class locations for django-storages
  • django-storages: remove public-read ACL. ACLs are deprecated in
    favor of bucket policies.

Updating to this version of ctlsettings requires this bucket policy to be present on the application's static assets buckets, with <bucket_name> replaced by the correct bucket name.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "PublicRead",
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::<bucket_name>/*"
        }
    ]
}

0.4.5

Choose a tag to compare

@nikolas nikolas released this 06 Nov 20:05
c454c60
  • Remove coverage
  • Remove statsd, django-statsd-mozilla

0.4.4

Choose a tag to compare

@nikolas nikolas released this 20 Mar 15:19
9b2c97c
  • Update storage settings to use Django's new STORAGES dictionary.

0.4.3

Choose a tag to compare

@nikolas nikolas released this 16 Oct 20:37
5d01b2c
  • Updated sentry-js config again to be more failsafe, and also
    configure user data in initialScope on initialization.

0.4.2

Choose a tag to compare

@nikolas nikolas released this 14 Oct 18:06
fb2d78b
  • Updated sentry-js config to use Sentry.onLoad.

0.4.1

Choose a tag to compare

@nikolas nikolas released this 11 Oct 15:13
e7b3a6d
  • Updated sentry JS config to use username instead of id.
  • Include ctlsettings in INSTALLED_APPS by default.

0.4.0

Choose a tag to compare

@nikolas nikolas released this 11 Oct 13:35
c6b7a4d
  • Added a custom context processor to make settings available in templates.
  • Added 'testing' environment when running tests.
  • Added sentry_js.html template partial, to unify the code for this setup.

0.3.6

Choose a tag to compare

@nikolas nikolas released this 09 Oct 20:02
d38253c
  • Added ENVIRONMENT django setting, denoting either 'staging' or 'production'

0.3.5

Choose a tag to compare

@nikolas nikolas released this 08 Oct 19:57
3b5d4eb
  • Updated sentry_init to include environment tag.
  • Introduced traces_sample_rate=1.0 in sentry staging config