Skip to content

Releases: safe-global/safe-config-service

Safe Config Service 2.51.0

17 Apr 09:05
47f0cf6
Compare
Choose a tag to compare

What's Changed

  • Bump safe-eth-py[django] from 5.0.0 to 5.1.0 in #819
  • Bump boto3 from 1.26.81 to 1.26.89 in #818
  • Bump pre-commit from 3.1.1 to 3.2.0 in #824
  • Bump djangorestframework-stubs from 1.8.0 to 1.10.0 in #825
  • Bump types-requests from 2.28.11.8 to 2.28.11.15 in #817
  • Bump types-requests from 2.28.11.15 to 2.28.11.17 in #827
  • Bump django-stubs-ext from 0.7.0 to 0.8.0 in #828
  • Bump docker/setup-buildx-action from 2.4.1 to 2.5.0 in #815

Full Changelog: v2.50.0...v2.51.0

Safe Config Service 2.50.0

13 Mar 14:24
85d1811
Compare
Choose a tag to compare

What's Changed

  • Bump django-cors-headers from 3.13.0 to 3.14.0 in #811
  • Bump faker from 17.3.0 to 17.6.0 in #812
  • Bump pre-commit from 3.0.4 to 3.1.1 in #813
  • Bump django-stubs from 1.14.0 to 1.15.0 in #814

Full Changelog: v2.49.0...v2.50.0

Safe Config Service 2.49.0

06 Mar 13:41
f3c528a
Compare
Choose a tag to compare

What's Changed

  • Bump djangorestframework-camel-case from 1.4.0 to 1.4.2 in #804
  • Bump boto3 from 1.26.79 to 1.26.81 in #809
  • Bump boto3 from 1.26.69 to 1.26.79 in #806
  • Bump drf-yasg[validation] from 1.21.4 to 1.21.5 in #798
  • Bump faker from 16.6.1 to 17.0.0 in #797
  • Bump mypy from 1.0.0 to 1.0.1 in #800
  • Bump faker from 17.0.0 to 17.3.0 in #805
  • Bump isort from 5.11.4 to 5.12.0 in #799
  • Bump actions/checkout from 2 to 3 in #808

Full Changelog: v2.48.0...v2.49.0

Safe Config Service 2.48.0

21 Feb 10:01
850b88c
Compare
Choose a tag to compare

What's Changed

  • Build and upload arm64 images in #796
  • Bump django from 4.1.6 to 4.1.7 in #795
  • Bump boto3 from 1.26.59 to 1.26.69 in #791
  • Bump djangorestframework-camel-case from 1.3.0 to 1.4.0 in #793
  • Bump mypy from 0.991 to 1.0.0 in #792
  • Bump black from 22.12.0 to 23.1.0 in #794
  • Bump cla-assistant/github-action from 2.2.1 to 2.3.0 in #790

Full Changelog: v2.47.0...v2.48.0

Safe Config Service 2.47.0

13 Feb 10:21
Compare
Choose a tag to compare

What's Changed

  • Bump safe-eth-py[django] from 4.9.3 to 5.0.0 in #788
  • Bump django from 4.1.5 to 4.1.6 in #782
  • Bump faker from 16.6.0 to 16.6.1 in #786
  • Bump pre-commit from 3.0.2 to 3.0.4 in #787
  • Bump docker/build-push-action from 3.3.0 to 4.0.0 in #784
  • Bump docker/setup-buildx-action from 2.4.0 to 2.4.1 in #785

Full Changelog: v2.46.0...v2.47.0

Safe Config Service 2.46.0

06 Feb 12:38
Compare
Choose a tag to compare

What's Changed

  • Bump docker/setup-buildx-action from 2.2.1 to 2.4.0 in #776
  • Bump django-stubs from 1.13.2 to 1.14.0 in #777
  • Bump boto3 from 1.26.54 to 1.26.59 in #778
  • Bump safe-eth-py[django] from 4.9.1 to 4.9.3 in #779
  • Bump pre-commit from 2.21.0 to 3.0.2 in #781

Full Changelog: v2.45.0...v2.46.0

Safe Config Service 2.45.0

30 Jan 10:51
Compare
Choose a tag to compare

What's Changed

Safe Apps Website/Social Media

  • A Safe App can now (optionally) set a URL for its main website. Additionally, each Safe App now has a collection of social
    media networks. Support was added for adding a DISCORD, GITHUB and TWITTER urls. #765
GET /api/v1/safe-apps

[
    {
       "id": <number>,
        ...
        "socialProfiles": [
            {
                "platform": "DISCORD",
                "url": <url>,
            },
            {
                "platform": "GITHUB",
                "url": <url>,
            },
            {
                "platform": "TWITTER",
                "url": <url>,
            }
        ],
  }
]

Other Changes

  • Update Swagger title in #769
  • Bump django-stubs from 1.13.1 to 1.13.2 in #771
  • Bump boto3 from 1.26.50 to 1.26.54 in #772
  • Bump faker from 16.4.0 to 16.6.0 in #774
  • Bump types-requests from 2.28.11.7 to 2.28.11.8 in #773

Full Changelog: v2.44.0...v2.45.0

Safe Config Service 2.44.0

23 Jan 11:14
Compare
Choose a tag to compare

What's Changed

Safe Apps now include features

You can now set features which you want to highlight on each Safe App. A feature is a text label which can be associated to multiple Safe Apps #756, #766, #764.

Features can be retrieved using the Safe Apps endpoint (collection of features will be under features).

GET /api/v1/safe-apps/

{
    "id": 1,
    "name": "Test App",
    "description": "Test App description",
    ...
    "features": [ "Example Feature" ]
}

Other changes

  • Bump requests from 2.28.1 to 2.28.2 in #758
  • Bump faker from 15.3.4 to 16.4.0 in #759
  • Bump docker/build-push-action from 3.2.0 to 3.3.0 in #760
  • Bump boto3 from 1.26.45 to 1.26.50 in #761
  • Bump safe-eth-py[django] from 4.8.2 to 4.9.1 in #763

Full Changelog: v2.43.0...v2.44.0

Safe Config Service 2.43.0

16 Jan 10:51
Compare
Choose a tag to compare

What's Changed

  • Bump boto3 from 1.26.41 to 1.26.45 in #753

Full Changelog: v2.42.0...v2.43.0

Safe Config Service 2.42.0

09 Jan 12:54
Compare
Choose a tag to compare

What's Changed

Docker compose now has default environment variables correctly set

The Docker compose file now works correctly without any environment variables set #730. The following variables now have defaults set:

  • NGINX_HOST_PORT=8080
  • DOCKER_NGINX_VOLUME_ROOT=/nginx
  • POSTGRES_PORT=5432

Other changes

  • Bump django from 4.1.3 to 4.1.5 in #737, #749
  • Bump pillow from 9.3.0 to 9.4.0 in #750
  • Bump boto3 from 1.26.17 to 1.26.41 in #738, #743, #751
  • Bump safe-eth-py[django] from 4.7.1 to 4.8.2 in #742
  • Bump faker from 15.3.3 to 15.3.4 in #734
  • Bump django-stubs from 1.13.0 to 1.13.1 in #736
  • Bump black from 22.10.0 to 22.12.0 in #733
  • Bump isort from 5.10.1 to 5.11.4 in #740, #746
  • Bump django-storages from 1.13.1 to 1.13.2 in #744
  • Bump pre-commit from 2.20.0 to 2.21.0 in #748
  • Bump types-requests from 2.28.11.5 to 2.28.11.7 in #745

Full Changelog: v2.41.0...v2.42.0