Alexander Trakhimenok

Results 20 comments of Alexander Trakhimenok

@cormacrelf do you plan to update examples to Angular 9.* with Ivy enabled? The `"@angular-skyhook/core": "^1.4.0-rc.0"` does not work with Ivy enabled for me.

How this fixes Ivy build if it's simply disables Ivy mode?

@sbuss can you handle 1.9 => 1.11 as a special case and try to map old path to a new one? And I wonder why just don’t replicate old behavior...

@yegle, @sbuss can you explain why old behavior is bad and you don't replicate it? Doing that would solve all issues all together without any breaking change and also will...

@sbuss thanks for reply. I understand it's tricky.

You already can do this by implementing [PropertyLoadSaver](https://cloud.google.com/appengine/docs/standard/go/datastore/reference#hdr-The_PropertyLoadSaver_Interface) interface. Or use [PropertyList](https://github.com/golang/appengine/blob/b79c28f0197795b4050bfcd7c4c2209136c594b1/datastore/prop.go#L83) class that already implements it. P.S. probably this question is better suited for StackOverflow.

@robert-king One of GAE Go devs said they going to update the Standard to 1.8 but no timelines except "soon". So it can be tomorrow, can be next month, can...

@someone1 two questions: 1. How do you manage to insert to task queue transitionally within datastore transaction? E.g. insert/update/delete few DB records and insert few queue tasks withing same transaction....

Seems `litter.Config.HidePrivateFields = false` can be partially suitable for reading though I'm not sure how it's parseable back to Go. test.go:48: litter.Config.HidePrivateFields = true: time.Time{} test.go:50: litter.Config.HidePrivateFields = false: time.Time{...

A map of formatters by type in Options would be handy. Also you can consider map of options by type so HidePrivateFields can be specified for a specific type.