Skip to content

Commit 7b48d8b

Browse files
committed
chore: version bump
1 parent 4fb918e commit 7b48d8b

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [5.1.0] - 2025-08-18
5+
6+
### Bug Fixes
7+
8+
- *(MenuToggle)* Fixed possible error when setting indeterminet state of menu toggles
9+
- *(Checkbox, TextInput, TextInputGroupMain, Textarea, ToggleGroup)* Allow null|undefined in v-model as input but not as output
10+
- *(SimpleList)* V-model's event only emits string values
11+
- *(docs)* Fixed typescript errors in docs
12+
- *(ToggleGroup)* Implemented workaround for cyclic dependency in use functions
13+
14+
### Documentation
15+
16+
- Moved v5 docs to subfolder
17+
- Added link to v6
18+
- Fixed github links
19+
20+
### Features
21+
22+
- *(FormSelect)* Component is generic and accepts/returns string or string[] depending on the `multiple` prop
23+
- *(TextInput)* Component is generic and accepts/returns a `number` if `type` is "number", `string` otherwise
24+
- *(Textarea, TextInput)* Added support for number, trim and lazy v-model modifiers
25+
26+
### Refactor
27+
28+
- Removed getUniqueId util function
29+
- Replaced custom useManagedProp with builtin defineModel
30+
431
## [5.0.0] - 2025-04-23
532

633
### Bug Fixes
@@ -835,4 +862,6 @@ All notable changes to this project will be documented in this file.
835862

836863
- Removed usage of Vue.use
837864

865+
## [0.1.0-alpha.0] - 2021-06-14
866+
838867
<!-- generated by git-cliff -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"scripts": {
88
"preinstall": "npx only-allow pnpm",
9-
"pub": "pnpm publish -r --filter ./packages/core --filter ./packages/icons",
9+
"pub": "pnpm publish -r --publish-branch v5 --filter ./packages/core --filter ./packages/icons --filter ./packages/table",
1010
"clean": "turbo run clean",
1111
"build": "turbo run build",
1212
"lint": "turbo run lint"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-patternfly/core",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"type": "module",
55
"files": [
66
"dist"

0 commit comments

Comments
 (0)