-
Notifications
You must be signed in to change notification settings - Fork 7
chore(deps): update SpringUserFramework to 4.0.2 #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| services: | ||
| mariadb: | ||
| image: mariadb:11.6 | ||
| environment: | ||
| MARIADB_DATABASE: springuser | ||
| MARIADB_USER: springuser | ||
| MARIADB_PASSWORD: springuser | ||
| MARIADB_ROOT_PASSWORD: rootpassword | ||
|
Comment on lines
+9
to
+13
|
||
| ports: | ||
| - "3306:3306" | ||
| volumes: | ||
| - mariadb-data:/var/lib/mysql | ||
|
Comment on lines
+7
to
+17
|
||
|
|
||
| volumes: | ||
| mariadb-data: | ||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,20 @@ | ||||||||||
| -- Test data for local development | ||||||||||
| -- Uses INSERT IGNORE to skip if data already exists | ||||||||||
|
|
||||||||||
| INSERT IGNORE INTO events (id, name, description, location, date, time) | ||||||||||
| VALUES | ||||||||||
| (1, 'Tech Conference 2025', 'A conference about the latest in tech.', 'San Francisco, CA', '2025-06-15', '10:00:00'), | ||||||||||
| (2, 'Spring Boot Workshop', 'Learn Spring Boot from experts.', 'New York, NY', '2025-07-10', '14:00:00'), | ||||||||||
|
Comment on lines
+7
to
+8
|
||||||||||
| (1, 'Tech Conference 2025', 'A conference about the latest in tech.', 'San Francisco, CA', '2025-06-15', '10:00:00'), | |
| (2, 'Spring Boot Workshop', 'Learn Spring Boot from experts.', 'New York, NY', '2025-07-10', '14:00:00'), | |
| (1, 'Tech Conference 2025', 'A conference about the latest in tech.', 'San Francisco, CA', '2026-06-15', '10:00:00'), | |
| (2, 'Spring Boot Workshop', 'Learn Spring Boot from experts.', 'New York, NY', '2026-07-10', '14:00:00'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MariaDB image version in this new compose.yaml file is '11.6', while the existing docker-compose.yml file uses '11.6.2' (a more specific patch version). For consistency and to ensure reproducible builds, consider using the same specific version tag '11.6.2' instead of the major.minor version '11.6'. This prevents unexpected updates when the image is pulled.