feat: make data parameter of Table and Column required#978
Merged
lars-reimann merged 5 commits intomainfrom Jan 8, 2025
Merged
feat: make data parameter of Table and Column required#978lars-reimann merged 5 commits intomainfrom
data parameter of Table and Column required#978lars-reimann merged 5 commits intomainfrom
Conversation
Table and Column requireddata parameter of Table and Column required
Contributor
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #978 +/- ##
==========================================
- Coverage 94.42% 94.42% -0.01%
==========================================
Files 121 121
Lines 7463 7459 -4
==========================================
- Hits 7047 7043 -4
Misses 416 416 ☔ View full report in Codecov by Sentry. |
lars-reimann
pushed a commit
that referenced
this pull request
Feb 26, 2025
## [0.30.0](v0.29.0...v0.30.0) (2025-02-26) ### Features * add more mathematical operations ([#986](#986)) ([2539a20](2539a20)), closes [#977](#977) * add more string operations ([#993](#993)) ([9bc5673](9bc5673)), closes [#977](#977) * consistent `selector` parameters ([#983](#983)) ([dc4640b](dc4640b)) * improved operations on cells ([#985](#985)) ([7396c94](7396c94)), closes [#977](#977) * make `data` parameter of `Table` and `Column` required ([#978](#978)) ([29fdefa](29fdefa)) * stabilize `Cell` class ([#984](#984)) ([96be911](96be911)), closes [#977](#977) * stabilize `Column` ([#981](#981)) ([38dc89c](38dc89c)), closes [#754](#754) [#977](#977) * stabilize `Row` class ([#980](#980)) ([ca1ce3d](ca1ce3d)), closes [#977](#977) * stabilize `Table` class ([#979](#979)) ([db85617](db85617)), closes [#875](#875) [#877](#877) [#977](#977) [#754](#754) * transform multiple columns of `Table` at once ([#982](#982)) ([2db9069](2db9069))
Member
Author
|
🎉 This PR is included in version 0.30.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of Changes
The
dataparameter ofTableandColumnmust now be specified. Being able to omit it was nice for tests, but also means that users might forget to specify their data. Since tables and columns are immutable, creating an empty table is rarely useful in practice.