workarea-blog 3.5.1 → 3.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 475de5f7e190b96f3210bf6048efd7f1d4933f712ea17e36d3935191450a791c
4
- data.tar.gz: 56ebb3cabae3cf99bde27b58c9fc9f614f61ebee21fce102cb0fd1901df7a37f
3
+ metadata.gz: 40af46d459e00466dcce7144b6d1c6cac510cc0057cc3571b7d99c2d0fbdbdfb
4
+ data.tar.gz: 6186fc56715d0b9028e2885610e1b00f3b9e8fc0bfc78dfbb5e223f3abe02985
5
5
  SHA512:
6
- metadata.gz: e7b4ed88cf979c3516bdef8cdac12ffd15db2d6372d82921ee6adb89aa57ce40676e2dc66d9d4206aaad8bc9dc58bb89cf3d0492ba4b7ee8e464e97493167dcc
7
- data.tar.gz: 264889008a20ae3f4c733fabfef2f22c67d78132215e299d6d3a9504d391540abf7324b5535cf8fd74718b386158a1fa061f858a36c09e9a0c8ead50855db32b
6
+ metadata.gz: '019083421dffc9fce387ae19feab90b1370aec05ff4f5f115c5495d83c1c1dada45b3faee2088085568bf73399b95857144e7a2a7c20323e3827f4cd6a0194a1'
7
+ data.tar.gz: 552f8513b4cc3b11842d4eab4ac384ef55824ab0425036dafea2aa413b1144ccc54a9b06e00f7989bb6d5b86b0a80ee1af4f0f22fe0cea39ca4a0037f218ae62
@@ -1,3 +1,21 @@
1
+ Workarea Blog 3.5.2 (2020-11-12)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Improve test related to content search
5
+
6
+ If another plugin decorates in a way to cause a `Content` to load its `Contentable` during creation/update (e.g. in a callback), this test will fail because the `Content` doesn't reload its `Contentable`.
7
+
8
+ This was noticied when combined with the site builder plugin.
9
+
10
+ Ben Crouse
11
+
12
+ * Fix wrong mismatched path/constant
13
+
14
+
15
+ Ben Crouse
16
+
17
+
18
+
1
19
  Workarea Blog 3.5.1 (2020-06-17)
2
20
  --------------------------------------------------------------------------------
3
21
 
@@ -1,5 +1,5 @@
1
1
  module Workarea
2
2
  module Blog
3
- VERSION = '3.5.1'.freeze
3
+ VERSION = '3.5.2'.freeze
4
4
  end
5
5
  end
@@ -20,13 +20,13 @@ module Workarea
20
20
 
21
21
  def test_use_summary_for_text_when_available
22
22
  @entry.update!(summary: 'foo bar baz')
23
- indexed = Content.new(@content)
23
+ indexed = Content.new(@content.reload)
24
24
 
25
25
  assert_equal('foo bar baz', indexed.text)
26
26
  end
27
27
 
28
28
  def test_fall_back_to_default_block_text_extraction
29
- indexed = Content.new(@content)
29
+ indexed = Content.new(@content.reload)
30
30
 
31
31
  assert_equal('lorem ipsum dolor sit amet', indexed.text)
32
32
  end
data/yarn.lock CHANGED
@@ -1798,9 +1798,9 @@ locate-path@^2.0.0:
1798
1798
  path-exists "^3.0.0"
1799
1799
 
1800
1800
  lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15:
1801
- version "4.17.15"
1802
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
1803
- integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
1801
+ version "4.17.19"
1802
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
1803
+ integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
1804
1804
 
1805
1805
  log-symbols@^2.2.0:
1806
1806
  version "2.2.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.1
4
+ version: 3.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - bcrouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-17 00:00:00.000000000 Z
11
+ date: 2020-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea
@@ -88,7 +88,7 @@ files:
88
88
  - app/queries/workarea/metadata/content_blog_entry.rb
89
89
  - app/queries/workarea/search/admin_blog_entries.rb
90
90
  - app/queries/workarea/search/admin_blogs.rb
91
- - app/seeds/workarea/blog_comments_seeds.rb
91
+ - app/seeds/workarea/blog_comment_seeds.rb
92
92
  - app/seeds/workarea/blog_entry_seeds.rb
93
93
  - app/seeds/workarea/blog_seeds.rb
94
94
  - app/services/workarea/search/queries/blog_admin.rb