Skip to content
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

Develop #68

Merged
merged 20 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
45a3b4b
Simulation tests success
valentin-boehm Nov 29, 2023
b109d6b
Tests for all simulation scenarios
valentin-boehm Nov 29, 2023
7746832
SimulationDataService tests
valentin-boehm Nov 29, 2023
ab1d657
Bump actions/setup-java from 3 to 4
dependabot[bot] Dec 4, 2023
b9d8815
Bump commons-io:commons-io from 2.15.0 to 2.15.1
dependabot[bot] Dec 4, 2023
60cc13f
Bump lint-staged from 15.0.2 to 15.2.0
dependabot[bot] Dec 4, 2023
844804c
Bump @angular-devkit/build-angular from 17.0.2 to 17.0.5
dependabot[bot] Dec 4, 2023
6a8da6b
Bump @types/node from 20.9.0 to 20.10.3
dependabot[bot] Dec 4, 2023
ec40ba4
Bump wait-on from 7.1.0 to 7.2.0
dependabot[bot] Dec 4, 2023
347f6af
Bump gradle from 8.4-jdk17 to 8.5-jdk17
dependabot[bot] Dec 4, 2023
595df88
Tests for Data, Result and Users
valentin-boehm Dec 5, 2023
ad534bf
Merge pull request #67 from ls1intum/dependabot/docker/develop/gradle…
valentin-boehm Dec 5, 2023
30fc513
Merge pull request #66 from ls1intum/dependabot/npm_and_yarn/develop/…
valentin-boehm Dec 5, 2023
8f8a944
Merge pull request #65 from ls1intum/dependabot/npm_and_yarn/develop/…
valentin-boehm Dec 5, 2023
588c0c6
Merge pull request #64 from ls1intum/dependabot/npm_and_yarn/develop/…
valentin-boehm Dec 5, 2023
42a46e0
Merge pull request #62 from ls1intum/dependabot/npm_and_yarn/develop/…
valentin-boehm Dec 5, 2023
9abfaa0
Merge pull request #61 from ls1intum/dependabot/gradle/develop/common…
valentin-boehm Dec 5, 2023
4b53947
Merge pull request #60 from ls1intum/dependabot/github_actions/develo…
valentin-boehm Dec 5, 2023
c41206a
Bump eslint from 8.54.0 to 8.55.0
dependabot[bot] Dec 5, 2023
1d25b86
Merge pull request #63 from ls1intum/dependabot/npm_and_yarn/develop/…
valentin-boehm Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:8.4-jdk17 AS build
FROM gradle:8.5-jdk17 AS build

COPY --chown=gradle:gradle . /home/gradle/src
WORKDIR /home/gradle/src
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ dependencies {
implementation "io.dropwizard.metrics:metrics-core"
implementation "org.springframework.security:spring-security-messaging"
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("commons-io:commons-io:2.15.0")
implementation("commons-io:commons-io:2.15.1")
implementation("com.thedeanda:lorem:2.2")
implementation("org.eclipse.jgit:org.eclipse.jgit:6.7.0.202309050840-r")
implementation("io.reactivex.rxjava3:rxjava:3.1.8")
Expand Down
Loading