event_sourcery 0.24.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f837642276b30c8fae75c9314c2adc4854e5b46105b520870f4960cf2b13b461
4
- data.tar.gz: 3622196388903fcf3b4f9b98fb0f5317cbffd71c6cd8b8ccc3cf571d63a773d2
3
+ metadata.gz: c501d64a75ded41a08829c20ccf9bf9368c9227b7381023d7d2fe0d502ee8003
4
+ data.tar.gz: 22eb6a9e837155b0315377873e7bb17cf6dadb75ef402c78a47ae9ae1c71e5ba
5
5
  SHA512:
6
- metadata.gz: 110dde9b74656dffc1838f5855c203bbd3e74b593a81f5d8a876c2629f99a032b8c577bcd3e59c35f96945032504051d9a7dd1103daa3e44a282b91660f01ac7
7
- data.tar.gz: cf26df2449e5db4a83ae3ce336e382b13c81bd3e6a7381dccab52bcc37d0928c2fa1e44f30d0d351475b520ab739e36b7f9438d2afca6f606d0e091a56725b30
6
+ metadata.gz: a3251f8d9966e191485a24c582ab616c39d2383caa551ea0efcc988eacf08c52104cd0b7a1121c210dbde2975d3becc4f210b93a964bf08a3fc46accfbf0109f
7
+ data.tar.gz: c621abddc5fa626fbc0fa02d0be371d25f18ed97d78f4f43c29f9fc6ffa460e6f698f0eccf55f1b9d61a2e0dddb8ec2036905b8e67c876fc9fe7962dfc73783f
data/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
+
10
+ ## [1.0.0] - 2023-11-29
11
+
12
+ ### Removed
13
+ - Removed Event.persisted? as it was potentially misleading ([#235])
14
+
15
+ [#235]: https://github.com/envato/event_sourcery/pull/235
16
+
9
17
  ## [0.24.0] - 2021-11-18
10
18
 
11
19
  ### Added
@@ -254,6 +262,7 @@ moving all Postgres related code into a separate gem.
254
262
  - `Command` and `CommandHandler` have been removed.
255
263
 
256
264
  [Unreleased]: https://github.com/envato/event_sourcery/compare/v0.24.0...HEAD
265
+ [1.0.0]: https://github.com/envato/event_sourcery/compare/v0.24.0...v1.0.0
257
266
  [0.24.0]: https://github.com/envato/event_sourcery/compare/v0.23.1...v0.24.0
258
267
  [0.23.1]: https://github.com/envato/event_sourcery/compare/v0.23.0...v0.23.1
259
268
  [0.23.0]: https://github.com/envato/event_sourcery/compare/v0.22.0...v0.23.0
data/README.md CHANGED
@@ -34,9 +34,9 @@ A framework for building event sourced, CQRS applications.
34
34
 
35
35
  ## Development Status
36
36
 
37
- EventSourcery is currently being used in production by multiple apps but we
38
- haven't finalized the API yet and things are still moving rapidly. Until we
39
- release a 1.0 things may change without first being deprecated.
37
+ [![Build Status](https://github.com/envato/event_sourcery/workflows/tests/badge.svg?branch=main)](https://github.com/envato/event_sourcery/actions?query=branch%3Amain)
38
+
39
+ Event Sourcery is in production use at [Envato](http://envato.com).
40
40
 
41
41
  ## Goals
42
42
 
@@ -95,11 +95,6 @@ module EventSourcery
95
95
  @causation_id = causation_id
96
96
  end
97
97
 
98
- # Is this event persisted?
99
- def persisted?
100
- !id.nil?
101
- end
102
-
103
98
  def hash
104
99
  [self.class, uuid].hash
105
100
  end
@@ -1,4 +1,4 @@
1
1
  module EventSourcery
2
2
  # Defines the version
3
- VERSION = '0.24.0'.freeze
3
+ VERSION = '1.0.0'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event_sourcery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Envato
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2023-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -129,7 +129,7 @@ metadata:
129
129
  bug_tracker_uri: https://github.com/envato/event_sourcery/issues
130
130
  changelog_uri: https://github.com/envato/event_sourcery/blob/HEAD/CHANGELOG.md
131
131
  source_code_uri: https://github.com/envato/event_sourcery
132
- post_install_message:
132
+ post_install_message:
133
133
  rdoc_options: []
134
134
  require_paths:
135
135
  - lib
@@ -144,8 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  requirements: []
147
- rubygems_version: 3.0.3
148
- signing_key:
147
+ rubygems_version: 3.3.7
148
+ signing_key:
149
149
  specification_version: 4
150
150
  summary: Event Sourcing Library
151
151
  test_files: []