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

Fix/add mariadb flyway support #1229

Open
wants to merge 32 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6974d1b
bumped mariadb to 10.11
blandger Apr 19, 2023
164b612
bumped mariadb to 10.11
blandger Apr 19, 2023
4c62df7
fixed 'slow' unit tests
blandger Apr 19, 2023
c8b43cc
minor unit tests updates
blandger Apr 20, 2023
f198873
renamed unit tests base class
blandger Apr 20, 2023
254ceda
minor updates
blandger Apr 20, 2023
2355a67
fixed tests
blandger Apr 24, 2023
eb4ace6
fixed test
blandger Apr 25, 2023
782ef20
fixed tests, test data
blandger Apr 25, 2023
7aa429d
fixed test, added minor logging
blandger Apr 26, 2023
fb3cf5e
updated test and sql
blandger Apr 26, 2023
c4ddd00
added new test, updated pom, mysql config
blandger Apr 26, 2023
7b41d7d
removed unused class
blandger Apr 27, 2023
64afa5b
fixed disabled tests
blandger Apr 27, 2023
6ab78d8
old tests removed
blandger Apr 28, 2023
7e8b5de
old tests removed
blandger Apr 28, 2023
8b5efa7
minor updates
blandger Apr 28, 2023
9b08f6b
added GitHun action yaml file for building
blandger Apr 28, 2023
aeab3fb
renamed GitHub action yaml file
blandger Apr 28, 2023
cd5bccc
merged from master, new keys are added
blandger Apr 28, 2023
35d7d22
Merge branch 'merged_from_master_with_new_keys' into fix/add_mariadb_…
blandger Apr 28, 2023
dd77012
added doc to test
blandger May 2, 2023
82bffbc
added more params to compile plugin
blandger May 2, 2023
1fb305b
updated test, added param to test plugin
blandger May 2, 2023
ed4cd3c
minor update
blandger May 2, 2023
f8a42ca
typo
blandger May 2, 2023
5370f2b
added unit tests
blandger May 17, 2023
f46bfcd
added observer unit tests
blandger May 18, 2023
9bb88ed
updated observer unit tests
blandger May 18, 2023
8ffda88
updated AccountPropertyObserver unit tests
blandger May 19, 2023
403ff96
updated DGSObserver unit tests
blandger May 19, 2023
8333910
updated PollObserver unit tests
blandger May 19, 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
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Apollo main Java CI with Maven

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub !"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
33 changes: 33 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Apollo main Java CI with Maven

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub !"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

### [1.51.0](https://github.com/ApolloFoundation/Apollo/releases/tag/1.51.0)

> 24 June 2022

Significant sharding speedup and robustness upgrade, general refactoring and tests fixes

- Fix PhasingPollServiceTest [`c393038`](https://github.com/ApolloFoundation/Apollo/commit/c393038d2e6b335596278ee09b24b654bafa9c89)
- APL-2142 - Speedup sharding tn2 [`#1213`](https://github.com/ApolloFoundation/Apollo/pull/1213)
- APL-2127 - Speedup account export [`#1208`](https://github.com/ApolloFoundation/Apollo/pull/1208)
- Fixed smc tests [`#1205`](https://github.com/ApolloFoundation/Apollo/pull/1205)
- Fix active phasings fetch for shard export [`#1192`](https://github.com/ApolloFoundation/Apollo/pull/1192)
- Fix dgs/phasing/fts tests, add active phasings consistency check [`d5c1b99`](https://github.com/ApolloFoundation/Apollo/commit/d5c1b99b56a42a47f4c34d63383b3acdc185b843)
- Add CHANGELOG


### [1.50.36](https://github.com/ApolloFoundation/Apollo/releases/tag/1.50.36)

> 29 April 2022

Updater's certificates cleanup and update

- Updater certificates update [`#1215`](https://github.com/ApolloFoundation/Apollo/pull/1215)
- Cleanup unused update certificates [`a3d6816`](https://github.com/ApolloFoundation/Apollo/commit/a3d6816dc738c3e0a60991cc37bc295716061d76)
37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/1_1.crt

This file was deleted.

37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/1_2.crt

This file was deleted.

37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/1_3.crt

This file was deleted.

38 changes: 0 additions & 38 deletions apl-conf/src/main/resources/conf-tn1/certs/1_4.crt

This file was deleted.

37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/2_1.crt

This file was deleted.

37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/2_2.crt

This file was deleted.

37 changes: 0 additions & 37 deletions apl-conf/src/main/resources/conf-tn1/certs/2_3.crt

This file was deleted.

Loading