Skip to content

Commit 65ef19f

Browse files
committed
Merge branch '3.2.x' into 3.3.x
2 parents afe220b + 32ece16 commit 65ef19f

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

docs/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ nav:
9595
- Configuration: configuration.md
9696
- Usage: usage.md
9797
- Links:
98-
- Library Documentation: https://patchlevel.github.io/event-sourcing-docs/latest/
98+
- Library Documentation: https://event-sourcing.patchlevel.io/latest/
9999
- Admin Bundle: https://github.com/patchlevel/event-sourcing-admin-bundle
100100
- Psalm Plugin: https://github.com/patchlevel/event-sourcing-psalm-plugin
101101
- Hydrator: https://github.com/patchlevel/hydrator

docs/pages/configuration.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
!!! info
44

55
You can find out more about event sourcing in the library
6-
[documentation](https://patchlevel.github.io/event-sourcing-docs/latest/).
6+
[documentation](https://event-sourcing.patchlevel.io/latest/).
77
This documentation is limited to bundle integration and configuration.
88

99
!!! tip
@@ -33,7 +33,7 @@ patchlevel_event_sourcing:
3333

3434
!!! tip
3535

36-
If you want to learn more about aggregates, read the [library documentation](https://patchlevel.github.io/event-sourcing-docs/latest/aggregate/).
36+
If you want to learn more about aggregates, read the [library documentation](https://event-sourcing.patchlevel.io/latest/aggregate/).
3737

3838
## Events
3939

@@ -54,7 +54,7 @@ patchlevel_event_sourcing:
5454
```
5555
!!! tip
5656

57-
If you want to learn more about events, read the [library documentation](https://patchlevel.github.io/event-sourcing-docs/latest/events/).
57+
If you want to learn more about events, read the [library documentation](https://event-sourcing.patchlevel.io/latest/events/).
5858

5959
## Custom Headers
6060

@@ -152,7 +152,7 @@ patchlevel_event_sourcing:
152152

153153
!!! tip
154154

155-
If you want to learn more about store, read the [library documentation](https://patchlevel.github.io/event-sourcing-docs/latest/store/).
155+
If you want to learn more about store, read the [library documentation](https://event-sourcing.patchlevel.io/latest/store/).
156156

157157
## Migration
158158

@@ -169,7 +169,7 @@ patchlevel_event_sourcing:
169169
!!! tip
170170

171171
You can find out more about subscriptions in the library
172-
[documentation](https://patchlevel.github.io/event-sourcing-docs/latest/subscription/).
172+
[documentation](https://event-sourcing.patchlevel.io/latest/subscription/).
173173

174174
### Catch Up
175175

@@ -247,7 +247,7 @@ patchlevel_event_sourcing:
247247
```
248248
!!! note
249249

250-
Default is the patchlevel [event bus](https://patchlevel.github.io/event-sourcing-docs/latest/event_bus/).
250+
Default is the patchlevel [event bus](https://event-sourcing.patchlevel.io/latest/event_bus/).
251251

252252
### Patchlevel (Default) Event Bus
253253

@@ -393,7 +393,7 @@ final class Profile extends BasicAggregateRoot
393393
```
394394
!!! note
395395

396-
You can find out more about snapshots [here](https://patchlevel.github.io/event-sourcing-docs/latest/snapshots/).
396+
You can find out more about snapshots [here](https://event-sourcing.patchlevel.io/latest/snapshots/).
397397

398398
## Cryptography
399399

@@ -413,7 +413,7 @@ patchlevel_event_sourcing:
413413
```
414414
!!! note
415415

416-
You can find out more about personal data [here](https://patchlevel.github.io/event-sourcing-docs/latest/personal_data/).
416+
You can find out more about personal data [here](https://event-sourcing.patchlevel.io/latest/personal_data/).
417417

418418
## Clock
419419

docs/pages/getting_started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ final class GuestIsCheckedOut
6868
```
6969
!!! note
7070

71-
You can find out more about events in the [library](https://patchlevel.github.io/event-sourcing-docs/latest/events/).
71+
You can find out more about events in the [library](https://event-sourcing.patchlevel.io/latest/events/).
7272

7373
## Define aggregates
7474

@@ -168,7 +168,7 @@ final class Hotel extends BasicAggregateRoot
168168
```
169169
!!! note
170170

171-
You can find out more about aggregates in the [library](https://patchlevel.github.io/event-sourcing-docs/latest/aggregate/).
171+
You can find out more about aggregates in the [library](https://event-sourcing.patchlevel.io/latest/aggregate/).
172172

173173
## Define projections
174174

@@ -259,7 +259,7 @@ final class HotelProjection
259259

260260
!!! note
261261

262-
You can find out more about projections in the [library](https://patchlevel.github.io/event-sourcing-docs/latest/subscription/).
262+
You can find out more about projections in the [library](https://event-sourcing.patchlevel.io/latest/subscription/).
263263

264264
## Processor
265265

@@ -302,7 +302,7 @@ final class SendCheckInEmailListener
302302

303303
!!! note
304304

305-
You can find out more about processor in the [library](https://patchlevel.github.io/event-sourcing-docs/latest/subscription/)
305+
You can find out more about processor in the [library](https://event-sourcing.patchlevel.io/latest/subscription/)
306306

307307
## Database setup
308308

@@ -315,7 +315,7 @@ bin/console event-sourcing:subscription:setup
315315
```
316316
!!! note
317317

318-
You can find out more about the cli in the [library](https://patchlevel.github.io/event-sourcing-docs/latest/cli/).
318+
You can find out more about the cli in the [library](https://event-sourcing.patchlevel.io/latest/cli/).
319319

320320
### Usage
321321

@@ -400,5 +400,5 @@ final class HotelController
400400
!!! note
401401

402402
This documentation is limited to the bundle integration.
403-
You should also read the [library documentation](https://patchlevel.github.io/event-sourcing-docs/latest/).
403+
You should also read the [library documentation](https://event-sourcing.patchlevel.io/latest/).
404404

docs/pages/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ for [event-sourcing](https://github.com/patchlevel/event-sourcing) library.
1010
* Everything is included in the package for event sourcing
1111
* Based on [doctrine dbal](https://github.com/doctrine/dbal) and their ecosystem
1212
* Developer experience oriented and fully typed
13-
* Automatic [snapshot](https://patchlevel.github.io/event-sourcing-docs/latest/snapshots/)-system to boost your performance
14-
* [Split](https://patchlevel.github.io/event-sourcing-docs/latest/split_stream/) big aggregates into multiple streams
15-
* Versioned and managed lifecycle of [subscriptions](https://patchlevel.github.io/event-sourcing-docs/latest/subscription/) like projections and processors
16-
* Safe usage of [Personal Data](https://patchlevel.github.io/event-sourcing-docs/latest/personal_data/) with crypto-shredding
17-
* Smooth [upcasting](https://patchlevel.github.io/event-sourcing-docs/latest/upcasting/) of old events
18-
* Simple setup with [scheme management](https://patchlevel.github.io/event-sourcing-docs/latest/store/) and [doctrine migration](https://patchlevel.github.io/event-sourcing-docs/latest/store/)
19-
* Built in [cli commands](https://patchlevel.github.io/event-sourcing-docs/latest/cli/) with [symfony](https://symfony.com/)
13+
* Automatic [snapshot](https://event-sourcing.patchlevel.io/latest/snapshots/)-system to boost your performance
14+
* [Split](https://event-sourcing.patchlevel.io/latest/split_stream/) big aggregates into multiple streams
15+
* Versioned and managed lifecycle of [subscriptions](https://event-sourcing.patchlevel.io/latest/subscription/) like projections and processors
16+
* Safe usage of [Personal Data](https://event-sourcing.patchlevel.io/latest/personal_data/) with crypto-shredding
17+
* Smooth [upcasting](https://event-sourcing.patchlevel.io/latest/upcasting/) of old events
18+
* Simple setup with [scheme management](https://event-sourcing.patchlevel.io/latest/store/) and [doctrine migration](https://event-sourcing.patchlevel.io/latest/store/)
19+
* Built in [cli commands](https://event-sourcing.patchlevel.io/latest/cli/) with [symfony](https://symfony.com/)
2020
* and much more...
2121

2222
## Installation

docs/pages/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ But we provide only examples for specific symfo
66
!!! info
77

88
You can find out more about event sourcing in the library
9-
[documentation](https://patchlevel.github.io/event-sourcing-docs/latest/).
9+
[documentation](https://event-sourcing.patchlevel.io/latest/).
1010
This documentation is limited to bundle integration and configuration.
1111

1212
## Repository
@@ -151,7 +151,7 @@ This bundle adds more Symfony specific normalizers in addition to the existing b
151151

152152
!!! note
153153

154-
You can find the other build-in normalizers [here](https://patchlevel.github.io/event-sourcing-docs/latest/normalizer/#built-in-normalizer)
154+
You can find the other build-in normalizers [here](https://event-sourcing.patchlevel.io/latest/normalizer/#built-in-normalizer)
155155

156156
### Uuid
157157

0 commit comments

Comments
 (0)