You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thielema opened this issue
Oct 24, 2024
· 2 comments
Labels
A-BUGSomething wrong, confusing or sub-standard in the software, docs, or user experience.packagingDependencies, version constraints, packaging..webThe hledger-web tool.
[ 1 of 18] Compiling Hledger.Web.Settings ( Hledger/Web/Settings.hs, interpreted )
Hledger/Web/Settings.hs:87:5: error: [GHC-39999]
• No instance for ‘Data.Default.Internal.Default
WidgetFileSettings’
arising from a use of ‘def’
• In the expression: def
In a record update at field ‘wfsHamletSettings’,
with type constructor ‘WidgetFileSettings’
and data constructor ‘Yesod.Default.Util.WidgetFileSettings’.
In the expression:
def
{wfsHamletSettings = defaultHamletSettings
{hamletNewlines = AlwaysNewlines}}
|
87 | def -- Yesod.WidgetFileSettings
| ^^^
Problem is data-default-0.8.0.0 that was released yesterday. It does no longer re-export Default class from data-default-class. This is a breaking change, indeed the major version bump to 0.8 indicates that. yesod defines Default instance for data-default-class, not data-default. I asked the author of both packages, what package we shall prefer in the future: mauke/data-default#29
The text was updated successfully, but these errors were encountered:
simonmichael
added
A-BUG
Something wrong, confusing or sub-standard in the software, docs, or user experience.
packaging
Dependencies, version constraints, packaging..
web
The hledger-web tool.
labels
Nov 2, 2024
A-BUGSomething wrong, confusing or sub-standard in the software, docs, or user experience.packagingDependencies, version constraints, packaging..webThe hledger-web tool.
When compiling
hledger-web
I get:Problem is
data-default-0.8.0.0
that was released yesterday. It does no longer re-exportDefault
class fromdata-default-class
. This is a breaking change, indeed the major version bump to 0.8 indicates that.yesod
definesDefault
instance fordata-default-class
, notdata-default
. I asked the author of both packages, what package we shall prefer in the future:mauke/data-default#29
The text was updated successfully, but these errors were encountered: