support_desk 0.1.1 → 0.1.2
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 +14 -0
- data/lib/support_desk/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: c258a259ca701d1c8850126370d587f1297eba3429ec0649912258596ac3789d
|
|
4
|
+
data.tar.gz: 48684ab7f4b23e2d76e2c17839bf602900e4e22123ef41400595546caedcdcf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70aa54f8c81942b81f10e00b7259825ca003b71bafb127fac498cb8325562207abd1a5a76628d41163c78e04ee3ca5bd5833d1bdd40b4b8756bd7a136225fec2
|
|
7
|
+
data.tar.gz: 65cddb6b49effbb1898a91c06cc44ce7944215c2139ce885580ec79faabd7c682693b171b589b756f7cab9fb1cb0f4b07df8532872e68b9ab3ddcfdeb2f9a9e2
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to this project are documented here.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.2] - 2026-09-16
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **0.1.1 shipped without the thing it was released for.** The gem published
|
|
11
|
+
to rubygems as 0.1.1 was built from a tree that predated the merge, so
|
|
12
|
+
`SupportDesk::Desk` never declared `verified: true` and no desk was ever
|
|
13
|
+
badged — while the release notes said it was. The repository was correct
|
|
14
|
+
the whole time; only the package was wrong, which is the worst shape for
|
|
15
|
+
this kind of mistake because nothing in git looks off.
|
|
16
|
+
|
|
17
|
+
`SupportDesk::Desk.chat_verified?` now returns true, and a test asserts it
|
|
18
|
+
against the loaded class rather than the source file, so a package built
|
|
19
|
+
from the wrong tree fails instead of shipping quietly.
|
|
20
|
+
|
|
7
21
|
## [0.1.1] - 2026-09-16
|
|
8
22
|
|
|
9
23
|
### Changed
|
data/lib/support_desk/version.rb
CHANGED