Aug 26-30 2019 - Strasbourg, France
(See the Hackathon Archive for past Hackathons)
The sixth Project Helix Hackathon will happen in Strasbourg, France during the week of Aug 26th. If you feel like attending, please sign up here.
Where is this going to happen? Do you have a windowless conference room blocked out?
The hackathon will take place at the Anticafé Strasbourg at 1 rue de la Division Leclerc 67000 Strasbourg.
The nearest airport is SXB
(30 mins) which have connections from AMS
. Other option: train from BSL
, ZUR
or Paris
. The venue is 15 mins walk from train station.
I hear this is a hackathon, are you going to hack all day?
Although this is a hackathon, we won't be hacking all the time, there will also be plenty of programming and coding.
Time | Monday | Tuesday | Wednesday | Thursday | Friday |
---|---|---|---|---|---|
Morning | - | Helix Introduction & Demo Format | Coding 11am: quarter retro and objectives |
Coding 10am: on-call debrief |
Coding |
Afternoon | Airport Transfer & Arrival | Coding 2pm: Adobe Runtime Events call |
Coding 2pm: backlog grooming |
Coding 2pm: demos |
Departure & Airport Transfer |
Evening | Set-up, drinks | Hacking | Team dinner - 7pm30 L'Eveil des Sens - map | Hacking | - |
Recommended hotels:
- Any hotel in Strasbourg city center should be at walking distance
- Hôtel Les Haras - (previous planned location) is at 10mins walking distance. Still a good choice.
What are you planning to show at the end of the week?
- Performathon: adobe/helix-cli#935
helix-content API? adobe/helix-pipeline#292- Write integration tests for helix-pages (mainly tests on production): adobe/helix-pages#8
- Look at parcel 2.0 and try to unify all scripts in one bundle (action) and eventually replace webpack.
- Adobe Runtime Events
- Conditonal language
- Authenticate GH access
- User journey of a customer onboarding on Helix Pages
- User journey of a customer onboarding with the editor
Sessions:
- On-call poc: debrief the 3-months trial, gather on-callees' feedback and define next steps (improve / change / do differently...)
- Backlog grooming: https://github.com/orgs/adobe/projects/2 has a LOT of issues, some of which are gathering dust...
- Retrospective of the last quater and objectives for the next quater
- Call with @francoisledroff (Adobe Runtime Events)
Who is going to be there? Can I come?
- @acapt
- @simonwex
- @trieloff
- @rofe (from Tuesday 10 AM)
- @koraa
- @bdelacretaz (Tuesday-Thursday)
- @stefan-guggisberg (Tuesday-Thursday)
- @kamendola
- @dominique-pfister (Tuesday-Thursday)
- @francoisledroff (Wednesday-Thursday)
@weilmic@kgera(Remote)@tripodsan(partially remote)
We have room for 16 people. First come, first served :)
Please share this page with people inside Adobe that you'd like to invite. Add yourself to the list if you want to attend.
What can I do to prepare for the Hackathon?
- Read the
README.md
and linked vision documents in this repo - Join
#helix-chat
on Slack - Install the
hlx
Command Line app and create your first project - Comment on the GitHub issues you think would be good candidates for the Hackathon
- Helix & Adobe I/O Events - https://bluejeans.com/s/iCkmi/
- Helix Pages: Landing Pages user stories - same above, start at 13mins.
- Loggly security analyzis: no recording. Check with @koraa for details
- Helix Pages: Integration Test - https://bluejeans.com/s/L10CB
- Custom domain registration - https://www.dropbox.com/s/g9n4jtdgshhjl6i/helix-custom-domain-reg-demo.mp4?dl=0
For occasional contributors to Helix it can get hard to keep track of what has changed in Helix since the last hackathon. Below, you can find a curated (i.e. incomplete) list of some of the most interesting changes to Helix since the fifth Hackathon, i.e. May 20th, 2019.
The most impactful change has been the move to a model of stronger service decomposition. Project Helix delivery now uses not just your pipeline actions (generated from your HTL and JSX templates), but also the static action, the Git Resolve Reference action, and a dispatch action to tie everything together. All actions except for your pipeline actions are provided as services by Project Helix and bound to your OpenWhisk namespace, so that you can always use the most recent version. You also have the ability to pin specific versions, which is useful during development to try out new features.
- Helix Pipeline has been updated to version 2.0.0 and no longer supports the merging of return values, which is a breaking change. The
context
now needs to be manipulated directly. v3.0.0 - the
--custom-vcl
parameter can be used to load custom VCL files when publishing. v3.1.0 - the static action is no longer built by default, but bound from a shared namespace, which makes upgrades easier and deploys a bit faster. v3.2.0
- The HTL processor has been hardened against XSS issues, but this means that adding DOM elements to the output now requires
@ context='unsafe'
, otherwise allsrc
andhref
attributes will be removed from the injected DOM nodes. This is a breaking change v4.0.0 hlx up
now works without any custom templates or scripts at all, it will simply render the Helix Pages output. v4.1.0- Helix Pipeline and HTL Engine have been upgraded to be fully DOM-based, which speeds up HTL processing by quite a bit. v4.2.0
- The
--minify
and--cache
options have been removed fromhlx up
v4.3.0 --minify
can now be used forhlx deploy
v4.4.0- Introduces support for the new
helix-resolve-git-ref
service. By default, when deploying, the most recent version of the service will be used, but you can override it using the--svc-resolve-git-ref
(this is mostly useful during development of said service) v4.5.0 - The Helix Publish service will now rely on a versioned service URL, making breakages due to updates more unlikely. v4.6.0
- Introduces support for the new
helix-dispatch
service. By default, the most recent version of the service will be used, but you can override it using the--dispatch-version
parameter v4.7.0 - You don't have to run
hlx build
before runninghlx deploy
anymore.hlx deploy
will do that for you. v4.9.0 - Adds support for Helix Pipeline 5.0.0, which also allows you to replace entire pipeline steps in your
pre.js
There have been a number of breaking changes to the pipeline, affecting both the DOM output and the pipeline API itself.
- The pipeline now reports timing for each processing step using the
Server-Timing
header. This is useful for troubleshooting and finding slow steps in the pipeline. v2.1.0 - The pipeline now adds anchors to all headlines, enabling deep linking into the page. It also adds support for custom HTML elements in the HTML output. v2.2.0
- Pipeline processing is now based on DOM instead of string manipluation, making the overall pipeline faster v2.5.0
- Context dumps are no longer written to disk, only retained in memory v3.3.0
- The
response.errorStack
property now has additional information about errors that occurred during processing v3.4.0 - Hero images are no longer being wrapped in a
p
tag. v3.5.0 - Images are no longer forced to be responsive v3.6.0
- The calculation of cache keys has been unified with other Helix services and you can now store arbitrary data in the
context.content.data
object. v3.7.0 - The handling of sections has been simplified: sections are now part of the standard DOM output, but the
context.content.sections
array has been removed. This is a breaking change v4.0.0 - The pipeline API has been simplified:
before()
,once()
, andafter()
functions have been replaced withuse()
. That is another breaking change. v5.0.0
The most notable change is the introduction of the Helix Dispatch service, which moved a lot of VCL logic into a serverless action. The change is mostly invisible to developers and entirely invisible to visitors.
Helix Pages is now available under https://<user>-<repo>.hlx.page
Helix Log is a new lightweight logging library used in Project Helix.
Helix Resolve Git Ref is a new service that resolves a Git SHA for a branch or tag name.
Helix Dispatch is a new service that coordinates a number of Helix Services during delivery.