Skip to content

Releases: Peripli/service-manager

v0.16.8

08 Oct 11:26
20cad65
Compare
Choose a tag to compare
Fix cross tenant notifications (#561)

* filter out platforms of other tenants

* test both global and tenant scope broker notifications

* use resolver to filter only tenant platforms

v0.16.7

06 Oct 17:36
fb7b619
Compare
Choose a tag to compare
 Instance binding parameters  🚧 WIP 🚧 (#558)

* parameters

* adding more tests

* test description change

* tests fix

* typo

* fixes after code review

* revert

* reverting capital letters back, because tests are failing

* trigger tests

* update unit test

* fix test

* after reformating

* fix for test

* after code review

* go convention to use lower case in errors

* remove FDescribe:

* after refview

* after reformating

v0.16.6

23 Sep 07:12
5536946
Compare
Choose a tag to compare
keep sub-account scoped platforms visibilities  (#556)

keep sub-account scoped platforms visibilities

v0.16.5

20 Sep 19:45
f34c54f
Compare
Choose a tag to compare
No labels (#555)

add query by label to listNoLabels query

v0.16.4

15 Sep 08:08
63bd56a
Compare
Choose a tag to compare
Visibility query (#554)

* additional named query and index for visibility_labels val

* fix unit tests

v0.16.3

14 Sep 20:21
Compare
Choose a tag to compare
fix unit tests

v0.16.2

10 Sep 11:05
3a56b1b
Compare
Choose a tag to compare
pass newObj configured services & plans to interceptors after broker …

v0.16.1

27 Aug 07:54
acb50e7
Compare
Choose a tag to compare
If not specified plan should be free as default (#548)

* default for plan.free should be true

v0.16.0

12 Aug 09:45
4a19d22
Compare
Choose a tag to compare
Support delete for async_not_defined mode (#547)

Finalize 'neutral' mode (not explicitly sync/async) for delete operations

- Support delete for async_not_defined
- Move the scheduling logic to the scheduler
- Confirm API supports async mode before scheduling a storage action

v0.15.2

30 Jul 08:59
17caa69
Compare
Choose a tag to compare
Set db connection read and write timeout (#539)

Fix - when the database goes down, or the network dies, the open connections will hang
 1. add library pq-timeouts and set read/write timeouts from the configuration
 2. reduce notification clean interval to 15 minutes
 3. fix tests - In current test implementation, the configuration for DB sslmode is passed as part of the DB URI string 
     passed by settings.URI - "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable".  
     Because of it, I can't just simply concatenate the read/write new parameters like done in previous commits. I need to 
     take into account that the URI string might contain already URL parameters.