Skip to content

Commit

Permalink
v1.0.2 release
Browse files Browse the repository at this point in the history
v1.0.2 release changes
  • Loading branch information
vijay-eis authored Mar 2, 2023
2 parents 13b877e + 22c725c commit 8ea7516
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 56 deletions.
25 changes: 25 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## [v1.0.2](https://gitlab.com/html-validate/html-validate/compare/v1.0.2) (2023-03-02)

### :stop_sign: Breaking changes :stop_sign:

- [US00013](https://rally1.rallydev.com/#/search?keywords=US00013) Removed Hello world controller ([bde77e578c30105](https://github.com/vijay-eis/mod-spring-sample/commit/bde77e578c30105))


### :sparkle: Features :sparkle:

- [US00012](https://rally1.rallydev.com/#/search?keywords=US00012) Log exit point in the controller ([e2952f5e1f25727](https://github.com/vijay-eis/mod-spring-sample/commit/e2952f5e1f25727))


### :lady_beetle: Fixes :lady_beetle:

- [US00013](https://rally1.rallydev.com/#/search?keywords=US00013) Removed Hello world controller ([bde77e578c30105](https://github.com/vijay-eis/mod-spring-sample/commit/bde77e578c30105))
- [US00011](https://rally1.rallydev.com/#/search?keywords=US00011) Use shorter names for path ([a8c6b7800a2bc71](https://github.com/vijay-eis/mod-spring-sample/commit/a8c6b7800a2bc71))

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







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

### :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.1</version>
<version>1.0.2</version>
<name>mod-spring-sample</name>
<description>mod-spring-sample</description>
<properties>
Expand Down
38 changes: 0 additions & 38 deletions src/eis.mustache

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@Log4j2
public class Feature1Controller {

@GetMapping("/feature1")
@GetMapping("/f1")
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,24 +31,25 @@
@Log4j2
public class Feature2Controller {

@GetMapping("/feature2")
@GetMapping("/f2")
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);
String keyPrefix = "EIS_";
jsonResponse.put(keyPrefix + "SdXN9V8ipcPCNPFERs3OR", "value 1");
log.info("Done with the /f2 route");
return ResponseEntity.ok(jsonResponse);
}

@GetMapping("/feature21")
@GetMapping("/f21")
public ResponseEntity<Map<String, String>> methodF21() {
log.info("Handling the /f21a route");
String keyPrefix = "FOLIO_";
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");
jsonResponse.put(keyPrefix + "i8avDwAUcjBiS64CijqDT", "value 3");

log.info("Done with the /f21a route");
return ResponseEntity.ok(jsonResponse);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@RestController
@Log4j2
public class Feature3Controller {
@GetMapping("/feature3")
@GetMapping("/f3")
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

This file was deleted.

0 comments on commit 8ea7516

Please sign in to comment.