Releases: Peripli/service-manager
Releases · Peripli/service-manager
v0.16.8
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
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
keep sub-account scoped platforms visibilities (#556) keep sub-account scoped platforms visibilities
v0.16.5
No labels (#555) add query by label to listNoLabels query
v0.16.4
Visibility query (#554) * additional named query and index for visibility_labels val * fix unit tests
v0.16.3
fix unit tests
v0.16.2
pass newObj configured services & plans to interceptors after broker …
v0.16.1
If not specified plan should be free as default (#548) * default for plan.free should be true
v0.16.0
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
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.