stega 1.0.0 → 1.1.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 +4 -4
- data/CHANGELOG.md +23 -2
- data/lib/stega/sanity.rb +1 -1
- data/lib/stega/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38ac3a86b14ccd893e2fba50f435eeac1724703e1bf56c16ba96051808add155
|
|
4
|
+
data.tar.gz: a63da18b21b4d31caf05984a34bfef9009505860a818b0ea8ecad4dd40d84ac3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f94005d0bd710804d6027c77bd0001823789a816bc13272e5a7cf21ce35b171d5961285f1546da25ae091b7c7dca827b443b93798d2928488fd9e886ba706ac
|
|
7
|
+
data.tar.gz: fb0b7bc91f3e2f42bf1e12457bc6b967a14113ba4583e0ea82d6e7f38a650456d9381323e1db91df962208ff1540ecba4845726d0bed56c9e2b94070afa2ea67
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [1.1.0] - 2026-03-11
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- `Stega::Sanity#encode_source_map` will pass thru `marks` attributes (used by portable text)
|
|
15
|
+
|
|
16
|
+
## [1.0.0] - 2026-03-04
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Initial version
|
|
21
|
+
|
|
22
|
+
[unreleased]: https://github.com/Skalar/stega/compare/v1.1.0...HEAD
|
|
23
|
+
[1.1.0]: https://github.com/Skalar/stega/compare/v1.0.0...v1.1.0
|
|
24
|
+
[1.0.0]: https://github.com/Skalar/stega/releases/tag/v1.0.0
|
data/lib/stega/sanity.rb
CHANGED
|
@@ -4,7 +4,7 @@ require "set"
|
|
|
4
4
|
|
|
5
5
|
module Stega
|
|
6
6
|
module Sanity
|
|
7
|
-
SKIP_KEYS = Set.new(%w[_id _type _ref _key _createdAt _updatedAt _rev _originalId _system slug]).freeze
|
|
7
|
+
SKIP_KEYS = Set.new(%w[_id _type _ref _key _createdAt _updatedAt _rev _originalId _system slug marks]).freeze
|
|
8
8
|
|
|
9
9
|
class << self
|
|
10
10
|
def encode_source_map(result, source_map, config)
|
data/lib/stega/version.rb
CHANGED