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

Critical code review PR - Last sprint handover checklist of 0.10.0 release #84

Draft
wants to merge 38 commits into
base: master
Choose a base branch
from
Draft
Changes from 2 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
dc45f11
[INJICERT-189] move mosip id changes from feature branch to develop (…
challabeehyv Jun 18, 2024
a8d48d3
[INJICERT-189] make service classes as conditional beans
challabeehyv Jun 18, 2024
c54607e
Merge pull request #34 from challabeehyv/mosipid-conditional-beans
vishwa-vyom Jun 18, 2024
b42ad84
[INJICERT-189] add esignet integration api dependency
challabeehyv Jun 18, 2024
d00c2f6
Merge pull request #36 from challabeehyv/esignet-dependency-mosipid
vishwa-vyom Jun 18, 2024
462be90
[MOSIP-33939] change esignet dependency versions for mosip ida plugin
challabeehyv Jun 20, 2024
9457ba9
Merge pull request #37 from challabeehyv/develop
vishwa-vyom Jun 20, 2024
d653407
[INJICERT-186] add mock identity plugin (#35)
challabeehyv Jun 24, 2024
e3f7ab1
[DSD-5591] Updated push-trigger.yml
abhishek8shankar Jun 25, 2024
6fa688f
Merge pull request #40 from abhishek8shankar/develop
ckm007 Jun 25, 2024
6ed7586
[DSD-5591] Updated push-trigger.yml
abhishek8shankar Jun 26, 2024
e4693ee
[DSD-5591] Updated push-trigger.yml
abhishek8shankar Jun 26, 2024
1da9d75
[DSD-5591] Updated push-trigger.yml
abhishek8shankar Jun 26, 2024
14eaef3
Merge pull request #41 from abhishek8shankar/develop
ckm007 Jun 26, 2024
a96fada
[DSD-5591] add plugin (#42)
challabeehyv Jun 26, 2024
fa0aee7
[INJICERT-317] rename credential.type to MockVerifiableCredential (#43)
vharsh Aug 1, 2024
6720dd8
[INJICERT-444] update to release URL
vharsh Sep 19, 2024
60d4697
Merge branch 'develop' into rel
vharsh Sep 26, 2024
7bcd0d9
[INJICERT-444] use java-11 for sunbird esignet plugin
vharsh Sep 26, 2024
79d0a6a
[INJICERT-444] bump up the version to 0.3.0
vharsh Sep 26, 2024
c38d8da
[INJICERT-444] bump down version due to artifact unavailability
vharsh Sep 26, 2024
7f116ef
Merge pull request #64 from vharsh/rel
jainhitesh9998 Sep 26, 2024
563a383
[INJICER-444] prepare for 0.10.0 release (#71)
vharsh Oct 8, 2024
2680e45
[INJIMOB-1588] add mso_mdoc vc format support for mock plugin (#60)
KiruthikaJeyashankar Oct 9, 2024
1e20150
[INJICERT-316] remove null field in the Mock VC (#69)
vharsh Oct 11, 2024
2e0f31c
[INJICERT-434] Added mock data provider plugin for data model 2.0 (#72)
Piyush7034 Oct 17, 2024
b329ca7
[INJICERT-499] Added JsonObject in place of HashMap for identity data…
Piyush7034 Nov 4, 2024
a437218
[INJIMOB-1862] Modifications in mdoc generation (#73)
KiruthikaJeyashankar Nov 5, 2024
e1a182f
[INJICERT-587] add CSV plugin implementation (#78)
vharsh Nov 8, 2024
b2516ba
[INJICERT-587] Fixed file access through classpath (#79)
Piyush7034 Nov 14, 2024
f9d3c76
[INJICERT-587] Merge mock-csv plugin to mock-certify-plugin (#80)
Piyush7034 Nov 14, 2024
cb220c0
[INJICERT-499] Implement a data provider plugin with postgres (#82)
Piyush7034 Nov 27, 2024
c654d79
[INJICERT-657] Remove mock-ida-dataprovider-plugin project from relea…
Piyush7034 Dec 14, 2024
f352d7d
Removed mdoc and mdl related code
Piyush7034 Dec 17, 2024
9c29bb9
Merge pull request #88 from Infosys/remove-mdoc
vishwa-vyom Dec 17, 2024
e50fa83
[INJICERT-657] Added jakarta dependency for build fix (#92)
Piyush7034 Dec 18, 2024
3a51e4e
[INJICERT-695] add Mock mdoc VCI plugin (#89)
KiruthikaJeyashankar Dec 18, 2024
f48d218
[INJICERT-695] handle null data when creating mdoc data entry (#93)
KiruthikaJeyashankar Dec 19, 2024
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
11 changes: 11 additions & 0 deletions mosip-identity-certify-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,17 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.mosip.esignet</groupId>
<artifactId>esignet-integration-api</artifactId>
<version>1.3.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
Expand Down
Loading