Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Releases: 5afe/safe-client-gateway

Version 3.26.0

29 Jun 08:55
Compare
Choose a tag to compare

What's Changed

fiatBalance and fiatConversion decimal places

fiatBalance and fiatConversion now have 4 decimal places (if rounding is required, floor is used) safe-global/safe-client-gateway#909

Fixed issue with the date filtering in the multisig-transactions endpoint

The execution_date__gte and execution_date__lte now work as expected in /v1/chains/<chain_id>/safes/<safe_address>/multisig-transactions safe-global/safe-client-gateway#910

Other Changes

Full Changelog: safe-global/safe-client-gateway@v3.25.0...v3.26.0

Version 3.25.0

01 Jun 10:23
Compare
Choose a tag to compare

What's Changed

Removed Safe App Manifest support

The Manifest file for Safe Apps is no longer be supported by the Safe Client Gateway. Instead it relies only on data available on the Safe Config Service safe-global/safe-client-gateway#894

Removed Accept header restriction for GET /delegates

Removed application/json as the required format for /v1/chains/<chain_id>/delegates safe-global/safe-client-gateway#893

Other Changes

Full Changelog: safe-global/safe-client-gateway@v3.24.0...v3.25.0

Version 3.24.0

25 May 14:54
Compare
Choose a tag to compare

What's Changed

Use config service to get safe app info

  • In addition to the manifest, the Safe Config Service is now used in order to retrieve data about a Safe App safe-global/safe-client-gateway#873
  • The url used for the Safe App needs to be an exact match of what the Safe Config Service is storing
  • If the filter doesn't provide any results, or the result is an error, fallback to get information from the manifest

executed query parameter was added to /safes/<safe_address>/multisig-transactions endpoint

  • The executed query param was added to MultisigFilters – which is used in the endpoint /v1/chains/<chain_id>/safes/<safe_address>/multisig-transactions safe-global/safe-client-gateway#880
  • It is therefore now possible to filter for multisig transactions already executed (executed=true) and the queued transactions (executed=false)

Other changes

Full Changelog: safe-global/safe-client-gateway@v3.23.0...v3.24.0

Version 3.23.0

18 May 09:56
Compare
Choose a tag to compare

What's Changed

New incoming-transfers, module and multisig endpoints (in preview)

Added the following endpoints safe-global/safe-client-gateway#850:

  • /v1/chains/<chain_id>/safes/<safe_address>/incoming-transfers – returns the incoming transfers for a given safe (forwards to /safes/{address}/incoming-transfers/ of the safe-transaction-service)
  • /v1/chains/<chain_id>/safes/<safe_address>/module-transactions – returns the module transactions for a given safe (forwards to /safes/{address}/module-transactions/ of the safe-transaction-service)
  • /v1/chains/<chain_id>/safes/<safe_address>/multisig-transactions – returns the multisig-transaction for a given safe (forwards to /safes/{address}/multisig-transactions/ of the safe-transaction-service)

Other changes

Full Changelog: safe-global/safe-client-gateway@v3.22.0...v3.23.0

Version 3.22.0

04 May 09:45
Compare
Choose a tag to compare

What's Changed

Full Changelog: safe-global/safe-client-gateway@v3.21.1...v3.22.0

Version 3.21.1

29 Apr 12:41
Compare
Choose a tag to compare

What's Changed

Full Changelog: safe-global/safe-client-gateway@v3.21.0...v3.21.1

Version 3.21.0

20 Apr 09:37
Compare
Choose a tag to compare

What's Changed

Safe Apps now include tags (preview)

  • Each Safe App can now include a list of tags #851
  • This feature is currently in preview – it is only enabled if the environment variable SAFE_APPS_TAGS_FEATURE_ENABLED is set to true
GET /v1/chains/<chain_id>/safe-apps

{
    "id": 1,
    "name": "OpenZeppelin",
    "tags": [
	    "tag1",
	    "tag2",
	    "tag3"
    ]
    ...
}

Full Changelog: v3.20.1...v3.21.0

Version 3.20.1

06 Apr 12:52
2b7afc5
Compare
Choose a tag to compare

What's Changed

  • Removed caching of the POST response from submitting a confirmation in #846

Full Changelog: v3.20.0...v3.20.1

Version 3.20.0

28 Mar 09:55
91e3968
Compare
Choose a tag to compare

What's Changed

  • Add nginx configuration in #820
  • Bump rust from 1.58.0 to 1.59.0 in #821

Full Changelog: v3.19.1...v3.20.0

Version 3.19.1

21 Mar 15:20
1c52acd
Compare
Choose a tag to compare

What's Changed

Introduction of TOKEN_CACHE_SIZE_COUNT

  • TOKEN_CACHE_SIZE_COUNT can now be used to set the max amount of tokens that should be cached during cache warmup #831
  • The default value was changed to 20000.

Other Changes

  • Removed auth header from /owners/<address>/safes in #832

Full Changelog: v3.19.0...v3.19.1