Skip to content

Commit

Permalink
v1.0.3 release
Browse files Browse the repository at this point in the history
v1.0.3 release changes
  • Loading branch information
vijay-eis authored Mar 2, 2023
2 parents 8ea7516 + f8e7d0c commit 0415620
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
24 changes: 24 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [v1.0.3](https://gitlab.com/html-validate/html-validate/compare/v1.0.3) (2023-03-02)

### :stop_sign: Breaking changes :stop_sign:

- [US00014](https://rally1.rallydev.com/#/search?keywords=US00014) Renamed the routes again ([3e366d7b9c68936](https://github.com/vijay-eis/mod-spring-sample/commit/3e366d7b9c68936))


### :sparkle: Features :sparkle:

- [US00015](https://rally1.rallydev.com/#/search?keywords=US00015) Added a new prefix for the keys ([34d2820ccb87bed](https://github.com/vijay-eis/mod-spring-sample/commit/34d2820ccb87bed))


### :lady_beetle: Fixes :lady_beetle:

- [US00014](https://rally1.rallydev.com/#/search?keywords=US00014) Renamed the routes again ([3e366d7b9c68936](https://github.com/vijay-eis/mod-spring-sample/commit/3e366d7b9c68936))

## [v1.0.2](https://gitlab.com/html-validate/html-validate/compare/v1.0.2) (2023-03-02)







## [v1.0.2](https://gitlab.com/html-validate/html-validate/compare/v1.0.2) (2023-03-02)

### :stop_sign: Breaking changes :stop_sign:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.vijay</groupId>
<artifactId>mod-spring-sample</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<name>mod-spring-sample</name>
<description>mod-spring-sample</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@Log4j2
public class Feature1Controller {

@GetMapping("/f1")
@GetMapping("/feature1")
public String index() {
log.info("Handling index route for feature 1....");
return "Some message";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@Log4j2
public class Feature2Controller {

@GetMapping("/f2")
@GetMapping("/feature2")
public ResponseEntity<Map<String, String>> methodF2() {
log.info("Handling the /f2 route");
Map<String, String> jsonResponse = new java.util.HashMap<String, String>(Collections.EMPTY_MAP);
Expand All @@ -41,10 +41,10 @@ public ResponseEntity<Map<String, String>> methodF2() {
return ResponseEntity.ok(jsonResponse);
}

@GetMapping("/f21")
@GetMapping("/feature21")
public ResponseEntity<Map<String, String>> methodF21() {
log.info("Handling the /f21a route");
String keyPrefix = "FOLIO_";
String keyPrefix = "FO_";
Map<String, String> jsonResponse = new java.util.HashMap<String, String>(Collections.EMPTY_MAP);
jsonResponse.put(keyPrefix + "6sifhXZfpdwi4RU2cHGqj", "value 1");
jsonResponse.put(keyPrefix + "i8avDwAUcjBiS64CijqDT", "value 2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@RestController
@Log4j2
public class Feature3Controller {
@GetMapping("/f3")
@GetMapping("/feature3")
public ResponseEntity<Map<String, String>> methodF3a() {
log.info("Inside methodF3...");
Map<String, String> jsonResponse = new java.util.HashMap<String, String>(Collections.EMPTY_MAP);
Expand Down

0 comments on commit 0415620

Please sign in to comment.