3
0
Fork 0

Compare commits

..

No commits in common. "55102f7b4390414862ac296a49191ced5bbd18ee" and "69a83ea47f9f6fc7bbb30781a0938017c0364479" have entirely different histories.

4 changed files with 5 additions and 22 deletions

View file

@ -5,12 +5,6 @@ All notable changes to WuttJamaican will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.28.8 (2026-02-25)
### Fix
- diff should use "intersection" of fields by default
## v0.28.7 (2026-02-17)
### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "WuttJamaican"
version = "0.28.8"
version = "0.28.7"
description = "Base package for Wutta Framework"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]

View file

@ -83,11 +83,7 @@ class Diff: # pylint: disable=too-many-instance-attributes
self.cell_padding = cell_padding
def make_fields(self): # pylint: disable=missing-function-docstring
if self.old_data and self.new_data:
fields = set(self.old_data) & set(self.new_data)
else:
fields = set(self.old_data or self.new_data)
return sorted(fields, key=lambda f: f.lower())
return sorted(set(self.old_data) | set(self.new_data), key=lambda x: x.lower())
def render_html(self, template=None, **kwargs):
"""

View file

@ -19,20 +19,13 @@ class TestDiff(ConfigTestCase):
self.assertEqual(diff.cell_padding, "0.5rem")
def test_make_fields(self):
# should return "sorted intersection" of fields
old_data = {"foo": "bar", "baz": "abc"}
new_data = {"foo": "bar", "baz": "xyz", "flurg": "foo"}
old_data = {"foo": "bar"}
new_data = {"foo": "bar", "baz": "zer"}
# nb. this calls make_fields()
diff = self.make_diff(old_data, new_data)
# TODO: should the fields be cumulative? or just use new_data?
self.assertEqual(diff.fields, ["baz", "foo"])
# all fields are used if only one data set
diff = self.make_diff(old_data, {})
self.assertEqual(diff.fields, ["baz", "foo"])
diff = self.make_diff({}, new_data)
self.assertEqual(diff.fields, ["baz", "flurg", "foo"])
def test_values(self):
old_data = {"foo": "bar"}
new_data = {"foo": "baz"}