spring-boot-microservices-series-v2 icon indicating copy to clipboard operation
spring-boot-microservices-series-v2 copied to clipboard

Spring boot cloud series with latest technologies

Results 26 spring-boot-microservices-series-v2 issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | grafana/grafana | major | `10.4.3` -> `11.0.0` | --- ### Configuration 📅 **Schedule**:...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [grafana/promtail](https://togithub.com/grafana/loki) | major | `2.9.8` -> `3.0.0` | --- ### Release Notes grafana/loki...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [grafana/loki](https://togithub.com/grafana/loki) | major | `2.9.8` -> `3.0.0` | --- ### Release Notes grafana/loki...

Tracking issue for: - [ ] https://github.com/rajadilipkolli/spring-boot-microservices-series-v2/security/code-scanning/1

bug
component : catalog-service

Currently due to any reason if status of order is NEW and is not processed due to timeout or any other reason it remains In NEW Status, system should have...

component : order-service

As a customer, I would like to see the status of the orders created. Technical Implementation: In Order-service microservice we have order details, hence an endpoint should be exposed here...

component : payment-service
component : order-service

Currently for creating a new Order we use below code, ```java public record OrderRequest( @Positive(message = "CustomerId should be positive") Long customerId, @NotEmpty(message = "Order without items not valid") List...

enhancement
component : order-service

While saving anything once we save data in db and publish it in queue, which can lead to many problems, like db connection hanging when queue is down.