Week 32, year 2021
- Gateway Pattern - We often need to access APIs from foreign codebases, and these foreign codebases usually have different vocabularies to ours. I've found it useful to encapsulate this interaction with a gateway that translates between our code and foreign code. more… [Martin Fowler]
- 20.10.4 Release Notes - We are pleased to announce the official release of EventStoreDB 20.10.4 for the following operating systems: [Event Store blog]
- How to build and push Docker image with GitHub actions? - In the previous post, I explained that with a few simple tricks, you can make your Docker image less cluttered and build faster. I explained… [Event-Driven by Oskar Dudycz]
- Protecting Sensitive Data in Event-Sourced Systems with Crypto Shredding - As opposed to more traditional systems where the state is persisted in a database and where CRUD operations are exposed to mutate and read it, in Event Sourcing every single change is recorded as an event within a stream in an append-only fashion and the current state is derived from the event log. [Event Store blog]