Aljaž Mur Eržen

Results 96 issues of Aljaž Mur Eržen

Closes #5050

Closes #5648, but uncovers another bug, which has to be fixed before this one.

Fixes ===== * Fix globals in nested modules (#474) (by @msullivan in ff08d9de for #474) * Support passing dicts and namedtuples for namedtuple arguments (#473) (by @msullivan in 60da99a5 for...

Currently, we do have property getters for error fields: https://github.com/edgedb/edgedb-python/blob/ca401141128dba2da443657edd61e45551e53b78/edgedb/errors/_base.py#L98-L127 ... but they are not considered stable API. We should change that and also expose `details` field. We do have...

git can be configured to use different tools for generating code diffs. One of such tools is [delta](https://github.com/dandavison/delta). Is it possible to plug in some other engine into CLI's insta...

- EdgeDB CLI Version: EdgeDB CLI 3.0.0-dev - OS Version: Ubuntu 22.02 Steps to Reproduce: 1. `edgedb instance link -I asxasxasx` 2. Type anything when prompted for more info (I...

minor
developer experience

When running this module on Node.js (for server-side rendering) I get an error ``` Reference error: Swiper not defined ``` in [this line](https://github.com/JayChase/angular2-useful-Swiper/blob/57071cb8a8e82c6a9ab86aa1d46e6195de9c9a1f/src/swiper.component.ts#L40). As the comment says [right above](https://github.com/JayChase/angular2-useful-swiper/blob/57071cb8a8e82c6a9ab86aa1d46e6195de9c9a1f/src/swiper.component.ts#L36-L37), this...

Before we were creating a separate path id with name `__derived__::__subject__`.

Schema: ``` module default { type Bar { required name: str {} } type Foo { bar: Bar; bar_name: str { rewrite insert using (__subject__.bar.name); } } }; ``` ```...

Our schema classes have generated getter methods for each of the fields: ``` class Pointer: source = so.SchemaField( so.InheritingObject, default=None, compcoef=None, inheritable=False ) # this is auto generated by a...