Skip to content

Commit b64d84c

Browse files
LukaszMyszkowskiLukasz Myszkowski
and
Lukasz Myszkowski
authored
build: update versions and pnpm lock (#48)
Co-authored-by: Lukasz Myszkowski <[email protected]>
1 parent cc98f36 commit b64d84c

File tree

6 files changed

+15555
-11182
lines changed

6 files changed

+15555
-11182
lines changed

CHANGELOG.md

+109
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,112 @@
1+
#### 17.0.6 (2024-04-24)
2+
3+
##### Build System / Dependencies
4+
5+
- **commit-lint:** fix building commit-lint (c5134cfd)
6+
- preinstall script for forbidding usage different package manage (d8810523)
7+
- update angular to 16 (8104bd82)
8+
9+
##### Chores
10+
11+
- **release:**
12+
- 17.0.5 (e20eb76a)
13+
- 17.0.4 (d68e5597)
14+
- 17.0.3 (bd9b52b8)
15+
- 17.0.2 (11323a90)
16+
- 17.0.1 (73aac9e8)
17+
- 17.0.0 (1987d258)
18+
- 16.0.0 (a4bf8748)
19+
- 15.0.1 (ae9150b6)
20+
- 15.0.0 (f990be2c)
21+
- **typed-urls:**
22+
- add repo information to project file (16de03b5)
23+
- include readme and license file in built libraries (d1adf994)
24+
25+
##### Documentation Changes
26+
27+
- add information about (2f9d4964)
28+
- add versions with links in readme (d4a1a075)
29+
- create readme files (7ab3fa02)
30+
- **validation-messages:**
31+
- remove typo (0486d0f1)
32+
- update readme (f3fa2610)
33+
34+
##### New Features
35+
36+
- **typed-urls:**
37+
- update peer deps (f5970123)
38+
- typed-urls migration (d938a953)
39+
- **validation-messages:**
40+
- new builder (c34725dc)
41+
- update example app (f16351f4)
42+
- add support for specifying validation messages locally (7072219c)
43+
- read from control from host component (1fb418ec)
44+
- add ApiErrorMessages type and ad matInputControl getters (38bc702c)
45+
- add support for controlName input (8e42d761)
46+
- support multiple interpolate parameters (e2954419)
47+
- angular material config (9c015d94)
48+
- example app config (3603f156)
49+
- validation messages lib migration (b2b51134)
50+
- fix package.json (b6dd5ec2)
51+
- fix package.json (#42) (25171780)
52+
- fix lint (82de64a7)
53+
- fix tests, bug with defining error messages + update more packages (bb0de65a)
54+
- fix ci (762179f7)
55+
- update workspace to v17 (66a9f65b)
56+
- add possibility to update package in publish packages workflow (d1732a19)
57+
- add github action for publishing to npm (22154d56)
58+
- create example application for typed urls (7583a278)
59+
- add script for publishing latest, built packages (ee7987e0)
60+
- **hoa:** auto-generate changelog on update libs versions (ffb21595)
61+
- **ng-forms:** allow to use plain string value for patter error message (fc120e26)
62+
- **packages:**
63+
- resolve peer dependencies conflicts (abb14cc0)
64+
- ci setup (c0dc830b)
65+
- **validation-message:** onpush change detection strategy (26f7faf5)
66+
- **commit-lint:** create commit lint lib and move from "dev" repository (ddff8d85)
67+
- **linking-tool:** linking-tool migration & validation-messages lib config (45703d23)
68+
- **config:**
69+
- standard version (14c11554)
70+
- hasky commit lint (5e5196a2)
71+
72+
##### Bug Fixes
73+
74+
- update prettier and fix config path (#46) (223e1e67)
75+
- fix types of form (269e7ac0)
76+
- fix publish packages.yml misspell (37bd0e26)
77+
- fix import and publish command (1702d037)
78+
- **commit-lint:**
79+
- peer dependencies (24dcb0f7)
80+
- make control container optional (f1f60e14)
81+
- **validation-messages:**
82+
- add optional decorator to MatFormField dependency (58b27f46)
83+
- update control input type to AbstractControl (53c032ac)
84+
- export utils from library, add merge config messages util to index.ts (4670f1a9)
85+
- mark component for check after updating the messages (510645bb)
86+
- remove white space between error and input caused by block elements (8cdec93e)
87+
- execute cdr#markForCheck on valueChanges (cbdc42e4)
88+
- **typed-urls:** Fix bug where passing urls with multiple params resulted in Record<string, string> type (3fce4c8a)
89+
90+
##### Other Changes
91+
92+
- add script for updating packages' versions (9ea38e0e)
93+
94+
##### Refactors
95+
96+
- **validation-messages:**
97+
- refactor code using signals (11ed7215)
98+
- implement review suggestions in validation-messages.component.ts (22479005)
99+
- rename validationMessages input to errorMessages (8adc7f1d)
100+
- change npm to pnpm commands in publish packages action (5cc611ed)
101+
102+
##### Code Style Changes
103+
104+
- **validation-messages:** format code with prettier, remove commented code related to memoization (7506d49c)
105+
106+
##### Tests
107+
108+
- **validation-messages:** fix validation-messages unit test (a10cabdf)
109+
1110
#### 17.0.3 (2024-01-24)
2111

3112
##### Build System / Dependencies

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@house-of-angular/ng-packages",
3-
"version": "17.0.5",
3+
"version": "17.0.6",
44
"type": "module",
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",
@@ -36,6 +36,7 @@
3636
"glob": "^8.1.0",
3737
"json5": "^2.2.3",
3838
"lodash-decorators": "^6.0.1",
39+
"ora": "^8.0.1",
3940
"rxjs": "~7.8.0",
4041
"standard-version": "^9.5.0",
4142
"ts-morph": "^18.0.0",
@@ -100,11 +101,11 @@
100101
"typescript": "5.2.2"
101102
},
102103
"peerDependencies": {
103-
"shelljs": "^0.8.5",
104-
"prettier": "^2.6.2",
104+
"@commitlint/lint": "^17.6.5",
105105
"git-describe": "^4.1.1",
106-
"symlink-or-copy": "^1.3.1",
107-
"@commitlint/lint": "^17.6.5"
106+
"prettier": "^2.6.2",
107+
"shelljs": "^0.8.5",
108+
"symlink-or-copy": "^1.3.1"
108109
},
109110
"volta": {
110111
"pnpm": "8.6.0",

0 commit comments

Comments
 (0)