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

Added revoked notification handling concept #600

Merged
merged 50 commits into from
Jan 31, 2024
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
812c7f3
chore[534] updated createIrsPolicyIfMissing()
Jan 23, 2024
c3a6e9c
chore[534] updated CHANGELOG.md
Jan 23, 2024
11bda56
Merge branch 'main' into feature/534-get-policies-and-publish-assets
Jan 23, 2024
46c3573
feature: 534 update copyright header; use right operand as policy id
ds-lcapellino Jan 23, 2024
426801d
Merge remote-tracking branch 'origin/feature/534-get-policies-and-pub…
ds-lcapellino Jan 23, 2024
a86c477
feature: 508 update postgres and pgadmin version
ds-lcapellino Jan 24, 2024
085b895
feature: 508 update CHANGELOG.md
ds-lcapellino Jan 24, 2024
45b8318
chore[534] updated methods
Jan 24, 2024
2e17650
Merge remote-tracking branch 'origin/feature/534-get-policies-and-pub…
Jan 24, 2024
7f3cd9a
Merge branch 'main' into feature/534-get-policies-and-publish-assets
Jan 24, 2024
3dceb1e
helm: 508 update dependency check verion to 9.0.9
ds-lcapellino Jan 24, 2024
b344131
helm: 508 remove unused dependency
ds-lcapellino Jan 24, 2024
445a50c
Revert "helm: 508 remove unused dependency"
ds-lcapellino Jan 24, 2024
d8cdbb1
chore(concept): #521 create first draft
Jan 24, 2024
57b57c8
chore(concept): #521 add more information
Jan 24, 2024
3a821ae
feature(assetState): #535 implemented first working asset publish state
ds-mmaul Jan 24, 2024
6a871b6
Merge branch 'main' into feature/535-publish-assets-in-fe
ds-mmaul Jan 24, 2024
3f480c0
feature(assetState): #535 added CHANGELOG entry
ds-mmaul Jan 24, 2024
13e6226
feature(publish): #535 show Toast on success or error
ds-mmaul Jan 25, 2024
0f48476
chore(concept): #521 rework concept
Jan 25, 2024
fe04bc9
feature(publish): #535 fix tests
ds-mmaul Jan 25, 2024
d543c4d
feature(publish): #535 fix tests
ds-mmaul Jan 25, 2024
fbf871a
feature(publish): #535 fix tests
ds-mmaul Jan 25, 2024
dfbb21f
feature(publish): #535 display error message
ds-mmaul Jan 25, 2024
40c555c
feature(publish): #535 added tests
ds-mmaul Jan 25, 2024
938772d
feature(publish): #535 remove test focus
ds-mmaul Jan 25, 2024
010b587
chore(concept): #521 add more accurate information, assumptions and d…
Jan 26, 2024
e37fafe
feature(publish): #535 added test
ds-mmaul Jan 26, 2024
0afb9de
Merge pull request #954 from eclipse-tractusx/main
ds-mwesener Jan 29, 2024
11abd85
feature(publish): #535 added user manual documentation for publishing…
ds-mmaul Jan 29, 2024
2138dcb
feature(publish): #535 added user manual documentation for publishing…
ds-mmaul Jan 29, 2024
cc8aee4
chore(concept): #521 include review suggestions
Jan 29, 2024
415045d
chore(concept): #521 include more review suggestions
Jan 30, 2024
10259a1
chore(concept): #521 update CHANGELOG.md
Jan 30, 2024
b4f895a
chore[534] updated License
Jan 30, 2024
01d0a14
Merge branch 'main' into feature/534-get-policies-and-publish-assets
Jan 30, 2024
69d283d
Merge pull request #934 from catenax-ng/feature/534-get-policies-and-…
ds-ashanmugavel Jan 30, 2024
69d6909
Merge pull request #944 from catenax-ng/feature/535-publish-assets-in-fe
ds-mwesener Jan 31, 2024
d124176
Merge branch 'main' into feature/508-update-postgres-to-15.4
ds-lcapellino Jan 31, 2024
d584977
feature: 508 add postgres 15.4 to integration tests
ds-lcapellino Jan 31, 2024
e223ed6
Merge pull request #939 from catenax-ng/feature/508-update-postgres-t…
ds-ext-sceronik Jan 31, 2024
184f6e8
Update CONTRIBUTING.md add matrix chat
mkanal Jan 31, 2024
e67619a
Update README.md add contact information
mkanal Jan 31, 2024
1ac460f
Update README.md
mkanal Jan 31, 2024
b2a9e46
Update CONTRIBUTING.md
mkanal Jan 31, 2024
887df83
Merge pull request #962 from catenax-ng/chore/#000-update-contact-inf…
ds-lcapellino Jan 31, 2024
f77c9af
Update CHANGELOG.md
mkanal Jan 31, 2024
18a3b42
Merge pull request #961 from catenax-ng/chore/#000-update-contact-inf…
ds-mwesener Jan 31, 2024
db8d294
Merge branch 'main' into chore/521-revoked-notification-handling
ds-crehm Jan 31, 2024
5463f4d
Merge pull request #953 from catenax-ng/chore/521-revoked-notificatio…
ds-crehm Jan 31, 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
Prev Previous commit
Next Next commit
feature(publish): #535 remove test focus
  • Loading branch information
ds-mmaul committed Jan 25, 2024
commit 938772dae997dcd1b080c8fa276d2e4bc29c9f59
Original file line number Diff line number Diff line change
@@ -323,7 +323,7 @@ describe('Parts', () => {

});

fit('should show success toast and refresh parts on successful publish', async() => {
it('should show success toast and refresh parts on successful publish', async() => {
const { fixture } = await renderParts();
const { componentInstance } = fixture;
const partsFacade = (componentInstance as any)['partsFacade'];
@@ -339,7 +339,7 @@ describe('Parts', () => {
expect(partsFacade.setPartsAsPlanned).toHaveBeenCalled();
});

fit('should show error toast and not refresh parts on failed publish', async () => {
it('should show error toast and not refresh parts on failed publish', async () => {
const { fixture } = await renderParts();
const { componentInstance } = fixture;
const partsFacade = (componentInstance as any)['partsFacade'];