Skip to content

Commit 568acf9

Browse files
authored
Merge pull request #294 from vue-pivottable/staging
🚀 Release: Beta versions ready for production
2 parents 70e17ab + b39d018 commit 568acf9

20 files changed

+678
-1617
lines changed

.github/workflows/integrate-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
echo "- **Auto-generated**: This PR was automatically created by the integration workflow"
9191
echo ""
9292
echo "### 📝 Recent Commits"
93-
echo "${{ steps.commit-info.outputs.commits }}"
93+
echo "${{ steps.commit-info.outputs.commits }}" | sed 's/%0A/\n/g; s/%0D//g; s/%25/%/g'
9494
echo ""
9595
echo "### 🔍 What happens next?"
9696
echo "1. Review the changes in this PR"

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 1.2.1
4+
5+
### Patch Changes
6+
7+
- a80fab8: Fix main.ts import reference issue and optimize memory usage
8+
9+
Fixed undefined SimpleApp reference to use App component in main.ts entry point. This resolves runtime errors and improves application startup reliability.
10+
11+
- f4122ad: Fix VuePivottable component props and type issues
12+
- Fix "Cannot read properties of undefined" error when using VuePivottable without VuePivottableUi
13+
- Remove unnecessary composables export from main index to prevent VuePivottableUi code execution
14+
- Make aggregatorName, renderers, rendererName optional in DefaultPropsType with proper defaults
15+
- Add proper default values in VPivottable component
16+
- Fix TSVExportRenderers to handle undefined aggregatorName
17+
- Resolve Vue warning messages for missing required props
18+
19+
This ensures VuePivottable can be used independently without requiring VuePivottableUi-specific props.
20+
321
## 1.2.0
422

523
### Minor Changes

0 commit comments

Comments
 (0)