Skip to content

Commit dd18adc

Browse files
committed
release 3.0.22
1 parent 40031dc commit dd18adc

5 files changed

Lines changed: 32 additions & 9 deletions

File tree

RELEASE_NOTES.md

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1903,7 +1903,7 @@
19031903
## 2. demo-web-app
19041904

19051905
### 2.1 integrationTest
1906-
- **RrInvoiceIntegrationTest.java.java**: ➕ dodano scenariusz testowy dla faktury VAT RR
1906+
- **RrInvoiceIntegrationTest.java**: ➕ dodano scenariusz testowy dla faktury VAT RR
19071907

19081908
### 2.1.1 integrationTest.resources
19091909
- **invoice-template-fa-rr-1.xml**: ➕ dodano plik zawierający przykładową fakturę VAT RR
@@ -1984,10 +1984,10 @@
19841984
## 2. demo-web-app
19851985

19861986
### 2.1 integrationTest
1987-
- **QrCodeOnlineIntegrationTest.java.java**: 🔧 drobne zmiany w asercji
1988-
- **RrInvoiceIntegrationTest.java.java**: 🔧 użycie nowej wersji schemy RR `SchemaVersion.VERSION_1_1E`
1989-
- **KsefTokenIntegrationTest.java.java**: 🔧 zmiany kosmetyczne w assercji
1990-
- **ExceptionsApiIntegrationTest.java.java**: ➕ dodanie scenariusza do obsługi kodów http 401 i 403 z API
1987+
- **QrCodeOnlineIntegrationTest.java**: 🔧 drobne zmiany w asercji
1988+
- **RrInvoiceIntegrationTest.java**: 🔧 użycie nowej wersji schemy RR `SchemaVersion.VERSION_1_1E`
1989+
- **KsefTokenIntegrationTest.java**: 🔧 zmiany kosmetyczne w assercji
1990+
- **ExceptionsApiIntegrationTest.java**: ➕ dodanie scenariusza do obsługi kodów http 401 i 403 z API
19911991

19921992
### 2.1.1 integrationTest.resources
19931993
- **invoice-template-fa-rr-1.xml**: 🔧 aktualizacja pod nową wersję schemy RR
@@ -2023,3 +2023,25 @@
20232023
| 🔧 zmienione | 2 |
20242024
| ➖ usunięte | 0 |
20252025

2026+
2027+
# Changelog zmian - `## 3.0.22 (2026-03-23)`- `API: 2.3.0`
2028+
2029+
## 1. ksef-client
2030+
2031+
### 1.1 api.client.model
2032+
- **model/session/SessionValue.java**: 🔧 dodanie enuma `FA_RR("FA_RR")`
2033+
2034+
## 2. demo-web-app
2035+
2036+
### 2.1 integrationTest
2037+
- **RrInvoiceIntegrationTest.java**: 🔧 użycie enuma z `FA_RR`
2038+
2039+
---
2040+
## 3. Podsumowanie
2041+
2042+
| Typ zmiany | Liczba plików |
2043+
|-------------|---------------|
2044+
| ➕ dodane | 0 |
2045+
| 🔧 zmienione | 2 |
2046+
| ➖ usunięte | 0 |
2047+

demo-web-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "pl.akmf.ksef"
11-
version = "3.0.21"
11+
version = "3.0.22"
1212

1313
java {
1414
toolchain {

demo-web-app/src/integrationTest/java/pl/akmf/ksef/sdk/RrInvoiceIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ void sendingFaRrInvoiceWithGrantPermission() throws JAXBException, IOException,
105105
encryptionData = defaultCryptographyService.getEncryptionData();
106106

107107
// Otwarcie sesji online z kodem systemu FA_RR
108-
String sessionReferenceNumber = openOnlineSession(encryptionData, SystemCode.FA_RR, SchemaVersion.VERSION_1_1E, SessionValue.RR, authorizedAccessToken);
108+
String sessionReferenceNumber = openOnlineSession(encryptionData, SystemCode.FA_RR, SchemaVersion.VERSION_1_1E, SessionValue.FA_RR, authorizedAccessToken);
109109

110110
// Wysłanie faktury FA-RR
111111
sendRrInvoice(sessionReferenceNumber, encryptionData, grantorNip, authorizedNip, templateFileName, authorizedAccessToken);

ksef-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66

7-
val appVersion = "3.0.21"
7+
val appVersion = "3.0.22"
88
val artifactName = "ksef-client"
99

1010
val githubRepositoryToken = "token"

ksef-client/src/main/java/pl/akmf/ksef/sdk/client/model/session/SessionValue.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
public enum SessionValue {
77
FA("FA"),
88
FA_PEF("PEF"),
9-
RR("RR");
9+
RR("RR"),
10+
FA_RR("FA_RR");
1011

1112
private final String value;
1213

0 commit comments

Comments
 (0)