Skip to content

Commit d9c27ea

Browse files
rajadilipkollisivaprasadreddyrenovate[bot]
authored
Upgrade to latest versions (#55)
* Adds Renovate * 0.1.1 (#1) * Creating v0.1.1 * Upgrading libraries * letting database insert values to id column (#42) letting database insert values to id column instead of hardcoding values this makes more sense as we are connecting to original database * adds servers Item for running remotely (#44) * adds servers Item for running remotely Adding servers information allows user to run with both http and https scheme especially when working in remote development like gitpod * Using annotations to set serverURL * Removes Hardcoded application Name * Implements pagination for fetching all entities (#46) * Implements pagination for fetching all entities * adds more assertions * fixes issue with aws version * fixes issue with dependency management plugin * Changed to generic pageResult response * Removes leftover code to fix issue * adds missing plural name * adds logstash logback encoder when elk is selected (#45) * adds logstash logback encoder when elk is selected * adds logstash configuration * upgradle maven and gradle wrappers (#48) * fixes issue with tableName when entityName has camelCase (#51) * fixes #47 * fixes issue with migration scripts * fixes issue with sequnce name in entity * using OOTB location of liquibase (#50) * using OOTB location of liquibase * revert loc in sync with saperation of concerns * fixes issue with npm tests * Upgrade to springboot 3 (#49) * Upgrade to springboot 3 * migrate to new way of configuration * fixes issues with generation aws sample * fixes issue generating & starting gradle project * removes zalando starter * typo fix * changing type of test to integrationTest * add Service Junit Test * Polish implementation and gitpod config * fixes issue with hardcoded assertion * Using JPA New mappings Co-authored-by: K Siva Prasad Reddy <[email protected]> * removes package rules * Update dependency chai to v4.3.7 (#3) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency sinon to v14.0.2 (#4) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v7.17.7 (#6) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker.elastic.co/kibana/kibana Docker tag to v7.17.7 (#7) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker.elastic.co/logstash/logstash Docker tag to v7.17.7 (#8) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update eclipse-temurin Docker tag to v17.0.5_8-jre-focal (#9) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency mocha to v10.1.0 (#10) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update prom/prometheus Docker tag to v2.40.3 (#13) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update grafana/grafana Docker tag to v9.2.6 (#12) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency yeoman-environment to v3.12.1 (#11) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency chalk to v5 (#14) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Reverts changes to yo module Co-authored-by: K Siva Prasad Reddy <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ba6a56e commit d9c27ea

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

generators/server/templates/app/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:17-jre-focal as builder
1+
FROM eclipse-temurin:17.0.5_8-jre-focal as builder
22
WORKDIR application
33
<%_ if (buildTool === 'maven') { _%>
44
ARG JAR_FILE=target/<%= appName %>-<%= DEFAULT_APP_VERSION %>.jar
@@ -10,7 +10,7 @@ COPY ${JAR_FILE} application.jar
1010
RUN java -Djarmode=layertools -jar application.jar extract
1111

1212
# the second stage of our build will copy the extracted layers
13-
FROM eclipse-temurin:17-jre-focal
13+
FROM eclipse-temurin:17.0.5_8-jre-focal
1414
WORKDIR application
1515
COPY --from=builder application/dependencies/ ./
1616
COPY --from=builder application/spring-boot-loader/ ./

generators/server/templates/app/docker/docker-compose-elk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22
services:
33

44
elasticsearch:
5-
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.6
5+
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.7
66
container_name: elasticsearch
77
environment:
88
- cluster.name=docker-cluster
@@ -20,7 +20,7 @@ services:
2020
hard: -1
2121

2222
logstash:
23-
image: docker.elastic.co/logstash/logstash:7.17.6
23+
image: docker.elastic.co/logstash/logstash:7.17.7
2424
container_name: logstash
2525
command: logstash -f /etc/logstash/conf.d/logstash.conf
2626
volumes:
@@ -31,7 +31,7 @@ services:
3131
- elasticsearch
3232

3333
kibana:
34-
image: docker.elastic.co/kibana/kibana:7.17.6
34+
image: docker.elastic.co/kibana/kibana:7.17.7
3535
container_name: kibana
3636
environment:
3737
- ELASTICSEARCH_URL=http://elasticsearch:9200

generators/server/templates/app/docker/docker-compose-monitoring.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.8'
22
services:
33

44
grafana:
5-
image: grafana/grafana:9.1.1
5+
image: grafana/grafana:9.2.6
66
ports:
77
- "3000:3000"
88
volumes:
@@ -16,7 +16,7 @@ services:
1616
- prometheus
1717

1818
prometheus:
19-
image: prom/prometheus:v2.38.0
19+
image: prom/prometheus:v2.40.3
2020
ports:
2121
- "9090:9090"
2222
volumes:

0 commit comments

Comments
 (0)