ideasbugs 0.10.0 → 0.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 383c2bf2c3fc0168a96e1e418398bc643b19c4364440604912d1e546543fc62a
4
- data.tar.gz: c40e84232ccc55b2394adbe9421f297a3c93e6cdff98c8d31e50f7c40e8e9148
3
+ metadata.gz: d3b0669f68f65a7cef3986dac6a2ca57938b1d38942338283593e026003e2688
4
+ data.tar.gz: ed01d83195291ee4cdc81bbf43f043d520c772155780c14a9e070fe0c1e4a2a4
5
5
  SHA512:
6
- metadata.gz: 32f3a5e503b09ae996a87890f4aceb11ab337db5bae30a711d019d834e1a639ee985e7a71cb380038d7ef2799e3df4d5b9e4d06b686021ac19bab7411ad1c329
7
- data.tar.gz: 0d11c01642ba6dea041d336461bcb69a65184190dcc28d544ca605a6827107a4fa7729f36fb71865ab6c07d251d4f3ae4af912feed8ac790614ed757778005a2
6
+ metadata.gz: 866b49d6047d00eaef7b79bf419fd8d0762e7ab1a5c1ea45c04b6cb121aa7f929c7049ca41bd9dfe7759bedf2fb46d69d6b8b017cf5e612a6be5046008472217
7
+ data.tar.gz: 8f25c5e661173324bce15de5ab9ca6e077d04da693231e3df9cf4e46f5a053062e678a2a8c82caedb2e1b47d2539b81036c97c496eb489f32888b2b1c2b0be4a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.1
4
+
5
+ - **The demo inbox now teaches the Ideasbugs workflow.** Its open, in-review,
6
+ and resolved records form a short path through captured request context,
7
+ triage, kinds and sections, search, production authorization, attribution,
8
+ and gated screenshots instead of posing as unrelated customer reports.
9
+ - `ideasbugs:seed_demo` keeps the existing demo identities, so rerunning it
10
+ upgrades those three rows in place. That also means it overwrites edits made
11
+ to the gem-owned demo rows; real feedback is not touched.
12
+
3
13
  ## 0.10.0
4
14
 
5
15
  - **Triage is one switch now.** Open, In review and Resolved sit in a single pill
@@ -6,29 +6,35 @@ module Ideasbugs
6
6
  {
7
7
  seed_id: 'checkout-error',
8
8
  kind: 'bug',
9
- section: 'Checkout',
10
- message: 'The payment form shows "Something went wrong" after entering a valid card.',
9
+ section: '1. Try triage',
10
+ message: 'Start here: this open bug shows what the widget captures kind, section, page URL, ' \
11
+ 'browser context, and an author when you configure one. Move it to In review as your ' \
12
+ 'first triage action.',
11
13
  status: 'open',
12
- page_url: '/checkout',
13
- author_label: 'Demo Customer'
14
+ page_url: '/checkout?demo=ideasbugs',
15
+ author_label: 'Demo customer · open this first'
14
16
  },
15
17
  {
16
18
  seed_id: 'saved-filters',
17
19
  kind: 'feature',
18
- section: 'Reports',
19
- message: 'It would save time if I could save this report filter and reuse it next week.',
20
+ section: '2. Shape the inbox',
21
+ message: 'This feature request is already In review so you can compare workflow states. Set ' \
22
+ 'config.sections to your product areas, adjust config.kinds if needed, then use the board ' \
23
+ 'filters and search to keep recurring themes visible.',
20
24
  status: 'in_review',
21
- page_url: '/reports/revenue',
22
- author_label: 'Demo Product Manager'
25
+ page_url: '/reports?demo=ideasbugs',
26
+ author_label: 'Demo product manager · compare states'
23
27
  },
24
28
  {
25
29
  seed_id: 'export-confusing',
26
30
  kind: 'other',
27
- section: 'Settings',
28
- message: 'The CSV export worked, but I expected the button to say when the file was ready.',
31
+ section: '3. Ship safely',
32
+ message: 'This resolved item is your launch checklist: render ideasbugs_tag, set authorize_admin ' \
33
+ 'before production, and configure current_user plus author_label when you want attributed ' \
34
+ 'feedback. Screenshots remain behind the dashboard gate.',
29
35
  status: 'resolved',
30
- page_url: '/settings/exports',
31
- author_label: 'Demo Admin'
36
+ page_url: '/settings?demo=ideasbugs',
37
+ author_label: 'Demo admin · launch checklist'
32
38
  }
33
39
  ].freeze
34
40
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ideasbugs
4
- VERSION = '0.10.0'
4
+ VERSION = '0.10.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ideasbugs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Shmarov
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
120
  - !ruby/object:Gem::Version
121
121
  version: '0'
122
122
  requirements: []
123
- rubygems_version: 3.6.9
123
+ rubygems_version: 4.0.10
124
124
  specification_version: 4
125
125
  summary: 'In-app product feedback collection for Rails: a drop-in widget and a built-in
126
126
  triage dashboard.'