stega 1.1.0 → 1.1.1
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 +8 -1
- data/lib/stega/sanity.rb +1 -1
- data/lib/stega/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77b7ef640ab350e4df38e901e6bc2e504f1cd8a40fd61a7a6a52bae3217678bb
|
|
4
|
+
data.tar.gz: 517be4193a246aa5b6f37cbd5e4d961f19deffee59aab4a778eb7fc2bc8c1729
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9a918d24067e341356f9a23cc7d092bd9bd6bdb9f50724cc1c2f98e569f05ab6ef20bbef1d243731b59bf093dba410c77156661396c1f390f3c82c865576c25
|
|
7
|
+
data.tar.gz: f6bbddb44ba95514c3ee1d86b02043e04ba543857d012f0a792f9a64d1ccc1eb6d5716569ca0dcdcec9f48473b72f70882a66627466a9ece35fc6d4210229556
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.1.1] - 2026-03-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- `Stega::Sanity#encode_source_map` no longer adds invalid perspective parameter to edit URLs
|
|
15
|
+
|
|
10
16
|
## [1.1.0] - 2026-03-11
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
@@ -19,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
19
25
|
|
|
20
26
|
- Initial version
|
|
21
27
|
|
|
22
|
-
[unreleased]: https://github.com/Skalar/stega/compare/v1.1.
|
|
28
|
+
[unreleased]: https://github.com/Skalar/stega/compare/v1.1.1...HEAD
|
|
29
|
+
[1.1.1]: https://github.com/Skalar/stega/compare/v1.1.0...v1.1.1
|
|
23
30
|
[1.1.0]: https://github.com/Skalar/stega/compare/v1.0.0...v1.1.0
|
|
24
31
|
[1.0.0]: https://github.com/Skalar/stega/releases/tag/v1.0.0
|
data/lib/stega/sanity.rb
CHANGED
|
@@ -102,7 +102,7 @@ module Stega
|
|
|
102
102
|
]
|
|
103
103
|
router_params = router_parts.join(";")
|
|
104
104
|
|
|
105
|
-
search_hash = {baseUrl: studio_url, id: doc_id, type: doc_type, path: studio_path
|
|
105
|
+
search_hash = {baseUrl: studio_url, id: doc_id, type: doc_type, path: studio_path}
|
|
106
106
|
unless omit_cross_dataset
|
|
107
107
|
search_hash[:projectId] = project_id if project_id
|
|
108
108
|
search_hash[:dataset] = dataset if dataset
|
data/lib/stega/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stega
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Theodor Tonum
|
|
@@ -68,15 +68,15 @@ files:
|
|
|
68
68
|
- lib/stega/legacy_encoder.rb
|
|
69
69
|
- lib/stega/sanity.rb
|
|
70
70
|
- lib/stega/version.rb
|
|
71
|
-
homepage: https://github.com/
|
|
71
|
+
homepage: https://github.com/Skalar/stega
|
|
72
72
|
licenses:
|
|
73
73
|
- MIT
|
|
74
74
|
metadata:
|
|
75
|
-
bug_tracker_uri: https://github.com/
|
|
76
|
-
changelog_uri: https://github.com/
|
|
77
|
-
documentation_uri: https://github.com/
|
|
78
|
-
homepage_uri: https://github.com/
|
|
79
|
-
source_code_uri: https://github.com/
|
|
75
|
+
bug_tracker_uri: https://github.com/Skalar/stega/issues
|
|
76
|
+
changelog_uri: https://github.com/Skalar/stega/blob/main/CHANGELOG.md
|
|
77
|
+
documentation_uri: https://github.com/Skalar/stega
|
|
78
|
+
homepage_uri: https://github.com/Skalar/stega
|
|
79
|
+
source_code_uri: https://github.com/Skalar/stega
|
|
80
80
|
rubygems_mfa_required: 'true'
|
|
81
81
|
rdoc_options: []
|
|
82
82
|
require_paths:
|