@dsivd/prestations-ng 16.3.0-beta.2 → 16.3.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -4,29 +4,6 @@
|
|
|
4
4
|
- This changelog, as well as a demo of some of the components, can be consulted here : https://dsi-vd.github.io/prestations-ng/
|
|
5
5
|
- **You can follow how these changes are used in a real project. See: [Skeleton repo](https://portail.etat-de-vaud.ch/outils/git/projects/CYBSDK/repos/skeleton/browse)**
|
|
6
6
|
|
|
7
|
-
## Notes about versioning in Prestakit
|
|
8
|
-
|
|
9
|
-
This project does not follow the Semantic Versioning principles, since it is made to be used with its backend counterpart [prestations-be](https://dsigit.etat-de-vaud.ch/outils/git/projects/CYBSDK/repos/prestations-be/browse).
|
|
10
|
-
|
|
11
|
-
The goal is to be able to quickly identify which combination of both library should be used together
|
|
12
|
-
|
|
13
|
-
- **Major version** : updated when a [breaking change](#breaking-change) is introduced in either library
|
|
14
|
-
- **Minor version** : updated when a change has an impact on both library
|
|
15
|
-
- **Patch version** : updated when a change has an impact on a specific library (can be more than an actual patch but shouldn't force you to change your code)
|
|
16
|
-
|
|
17
|
-
e.g.
|
|
18
|
-
|
|
19
|
-
- you **cannot** use prestations-be@**14**.0.2 and prestations-ng@**13**.0.0
|
|
20
|
-
- you **cannot** use prestations-be@14.**0**.0 and prestations-ng@14.**1**.0
|
|
21
|
-
- you **can** use prestations-be@**14.0**.2 and prestations-ng@**14.0**.17
|
|
22
|
-
|
|
23
|
-
### Breaking change
|
|
24
|
-
|
|
25
|
-
A change is considered **breaking** if you have to change your code or update your external dependencies (e.g. Spring Boot or Angular)
|
|
26
|
-
|
|
27
|
-
- In some specific case, we allow ourselves to not consider a change as breaking if the fix is "easy"
|
|
28
|
-
- adding a new constructor argument in one of our service is OK, if you just have to update your constructor's signature and your call to `super(...)`
|
|
29
|
-
|
|
30
7
|
---
|
|
31
8
|
|
|
32
9
|
## [16.3.0] - must be aligned with prestations-be
|
|
@@ -46,6 +23,7 @@ A change is considered **breaking** if you have to change your code or update yo
|
|
|
46
23
|
|
|
47
24
|
- [foehn-input-number](projects/prestations-ng/src/foehn-input/foehn-input-number.component.ts)
|
|
48
25
|
- add `@Input() allowLeadingZero = false` to specify if we allow leading `0` such as NAVS13 numbers
|
|
26
|
+
- add prestations-be documentation
|
|
49
27
|
|
|
50
28
|
### Updated
|
|
51
29
|
|
package/README_COMMON.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# PrestaKit
|
|
2
|
+
|
|
3
|
+
PrestaKit is a library that provides a set of services to help developers build a Prestation application.
|
|
4
|
+
|
|
5
|
+
It is composed of two parts:
|
|
6
|
+
|
|
7
|
+
- prestations-ng (frontend library)
|
|
8
|
+
- prestations-be (backend library)
|
|
9
|
+
|
|
10
|
+
Best practice guide online in our DGNSI WiKi at [https://dgnsiwiki.etat-de-vaud.ch/outils/dgnsiwiki/x/V4EKNg](https://dgnsiwiki.etat-de-vaud.ch/outils/dgnsiwiki/x/V4EKNg)
|
|
11
|
+
|
|
12
|
+
## Notes about versioning in Prestakit
|
|
13
|
+
|
|
14
|
+
This project does not follow the Semantic Versioning principles, since it is made to be used with its backend counterpart [prestations-be](https://dsigit.etat-de-vaud.ch/outils/git/projects/CYBSDK/repos/prestations-be/browse).
|
|
15
|
+
|
|
16
|
+
The goal is to be able to quickly identify which combination of both library should be used together
|
|
17
|
+
|
|
18
|
+
- **Major version** : updated when a [breaking change](#breaking-change) is introduced in either library
|
|
19
|
+
- **Minor version** : updated when a change has an impact on both library
|
|
20
|
+
- **Patch version** : updated when a change has an impact on a specific library (can be more than an actual patch but shouldn't force you to change your code)
|
|
21
|
+
|
|
22
|
+
e.g.
|
|
23
|
+
|
|
24
|
+
- you **cannot** use prestations-be@**14**.0.2 and prestations-ng@**13**.0.0
|
|
25
|
+
- you **cannot** use prestations-be@14.**0**.0 and prestations-ng@14.**1**.0
|
|
26
|
+
- you **can** use prestations-be@**14.0**.2 and prestations-ng@**14.0**.17
|
|
27
|
+
|
|
28
|
+
### Breaking change
|
|
29
|
+
|
|
30
|
+
A change is considered **breaking** if you have to change your code or update your external dependencies (e.g. Spring Boot or Angular)
|
|
31
|
+
|
|
32
|
+
- In some specific case, we allow ourselves to not consider a change as breaking if the fix is "easy"
|
|
33
|
+
- adding a new constructor argument in one of our service is OK, if you just have to update your constructor's signature and your call to `super(...)`
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ng-update": {
|
|
41
41
|
"migrations": "./schematics/migration-collection.json"
|
|
42
42
|
},
|
|
43
|
-
"version": "16.3.0-beta.
|
|
43
|
+
"version": "16.3.0-beta.3",
|
|
44
44
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
45
45
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
46
46
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
Binary file
|