Service workers route, multiple queries via GraphiQL editor, improvements, fixes
Last edit:
November 25, 2019
NEW
- special route for service workers
You can put a file named serviceworker.js
(or sw.js
) in the app/assets
directory and access it via https://www.example.com/serviceworker.js
(or https://example.com/sw.js
). In case you need more files to be accessible this way, you can add numbers to the filename, for example serviceworker-1.js
, serviceworker-2.js
, etc.
For more information, check out our Service Workers topic.
IMPROVED
model_*
mutations returnGraph::Types::Model
object instead of Customization- performance of
user_*
mutations invoked without a form, on Instances with many UserProfiles and ModelSchemas (in some scenarios it is now faster - the improvement depends on the number of UserProfiles/ModelSchemas)
FIXED
- handle operation name from GraphiQL editor when multiple queries are defined
- edge case random 500 error when
acceptance
validation was used - including a partial, which included
.
in a name, but did not exist (for example{% include "i_do_not.exist" %}
), was preventing next partials from being found as well
pos-cli changes
pos-cli
changelog is kept separately.