Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 2928513

Browse files
authored
Merge pull request #494 from green-ecolution/release/v1.2.1
Release version v1.2.1
2 parents fa425d1 + 7096cc1 commit 2928513

File tree

246 files changed

+1262
-1233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+1262
-1233
lines changed

.docker/Dockerfile.dev

Lines changed: 0 additions & 54 deletions
This file was deleted.

.docker/Dockerfile.prod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#############################################
44
FROM golang:1.24-alpine AS preparer_go
55

6-
ARG MOCKER_VERSION="v2.43.2"
6+
ARG MOCKER_VERSION="v2.52.2"
77

88
WORKDIR /app/build
99

@@ -22,7 +22,7 @@ FROM preparer_go AS builder
2222
ARG APP_VERSION="v0.0.0"
2323
ARG APP_GIT_COMMIT="unknown"
2424
ARG APP_GIT_BRANCH="main"
25-
ARG APP_GIT_REPOSITORY="https://github.com/green-ecolution/green-ecolution-backend"
25+
ARG APP_GIT_REPOSITORY="https://github.com/green-ecolution/backend"
2626
ARG APP_BUILD_TIME="unknown"
2727

2828
RUN make build \
@@ -36,7 +36,7 @@ RUN make build \
3636
#############################################
3737
# Runner go
3838
#############################################
39-
FROM alpine:3.20 AS runner
39+
FROM alpine:3.21 AS runner
4040

4141
ENV PORT=3000
4242
ENV ENV=prod

.docker/Dockerfile.stage

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#############################################
44
FROM golang:1.24-alpine AS preparer_go
55

6-
ARG MOCKER_VERSION="v2.43.2"
6+
ARG MOCKER_VERSION="v2.52.2"
77

88
WORKDIR /app/build
99

@@ -21,8 +21,8 @@ FROM preparer_go AS builder
2121

2222
ARG APP_VERSION="v0.0.0-stage"
2323
ARG APP_GIT_COMMIT="unknown"
24-
ARG APP_GIT_BRANCH="stage-deployment"
25-
ARG APP_GIT_REPOSITORY="https://github.com/green-ecolution/green-ecolution-backend"
24+
ARG APP_GIT_BRANCH="develop"
25+
ARG APP_GIT_REPOSITORY="https://github.com/green-ecolution/backend"
2626
ARG APP_BUILD_TIME="unknown"
2727

2828
RUN make build \
@@ -35,7 +35,7 @@ RUN make build \
3535
#############################################
3636
# Runner go
3737
#############################################
38-
FROM alpine:3.20 AS runner
38+
FROM alpine:3.21 AS runner
3939

4040
ENV PORT=3000
4141
ENV ENV=stage

.docker/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
backend:
3-
image: ghcr.io/green-ecolution/green-ecolution-backend-dev:latest # TODO: remove ...-dev when it's ready for production
3+
image: ghcr.io/green-ecolution/backend:latest
44
depends_on:
55
migrations:
66
condition: service_completed_successfully
@@ -24,7 +24,7 @@ services:
2424
- "traefik.http.services.backend.loadbalancer.server.port=3000"
2525

2626
frontend:
27-
image: ghcr.io/green-ecolution/green-ecolution-frontend-dev:latest # TODO: remove ...-dev when it's ready for production
27+
image: ghcr.io/green-ecolution/frontend:latest
2828
depends_on:
2929
backend:
3030
condition: service_started
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Bug Report
2+
description: Report a bug to help us improve the project.
3+
labels: [bug]
4+
type: Bug
5+
projects:
6+
- green-ecolution/5
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report! :bug: Please provide a short summary of the bug,
12+
along with any information you feel relevant to replicating the bug.
13+
14+
- type: textarea
15+
attributes:
16+
label: Describe the bug
17+
description: What happened? What did you expect to happen instead?
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
attributes:
23+
label: Steps to Reproduce
24+
description: Include steps, commands or code snippets to reproduce.
25+
validations:
26+
required: true
27+
28+
- type: input
29+
attributes:
30+
label: Environment
31+
description: e.g. OS, Go version, Docker, etc.
32+
33+
- type: textarea
34+
attributes:
35+
label: Additional context
36+
description: Add any other context, logs, screenshots, etc.
37+
38+
- type: dropdown
39+
id: version
40+
attributes:
41+
label: Version
42+
description: What version of our software are you running?
43+
options:
44+
- 1.2.0
45+
- 1.1.0
46+
- 1.0.0
47+
default: 0
48+
49+
- type: textarea
50+
id: logs
51+
attributes:
52+
label: Relevant log output
53+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
54+
render: shell
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request
2+
description: Suggest an idea to improve the project.
3+
labels: [enhancement]
4+
type: Feature
5+
projects:
6+
- green-ecolution/5
7+
body:
8+
- type: textarea
9+
attributes:
10+
label: Describe the feature
11+
description: What problem would this feature solve or improve?
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
attributes:
17+
label: Proposed solution
18+
description: Describe how you think this feature could work.
19+
20+
- type: textarea
21+
attributes:
22+
label: Alternatives considered
23+
description: Have you considered any alternative solutions or workarounds?
24+
25+
- type: textarea
26+
attributes:
27+
label: Additional context
28+
description: Add any other relevant context or diagrams.

.github/dependabot.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gomod"
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 5
8+
labels:
9+
- "dependencies"
10+
- "go"
11+
reviewers:
12+
- "green-ecolution/backend-maintainers"
13+
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: daily
18+
open-pull-requests-limit: 5
19+
labels:
20+
- "ci"
21+
- "github-actions"
22+
reviewers:
23+
- "green-ecolution/devops"
24+
25+
- package-ecosystem: "docker"
26+
directory: ".docker"
27+
schedule:
28+
interval: daily
29+
open-pull-requests-limit: 5
30+
labels:
31+
- "dependencies"
32+
- "docker"
33+
reviewers:
34+
- "green-ecolution/devops"

0 commit comments

Comments
 (0)