@blinklabs/dingo 0.19.0 → 0.20.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.
package/README.md CHANGED
@@ -112,7 +112,6 @@ Each plugin supports specific configuration options. See `dingo.yaml.example` fo
112
112
  - `bucket` - GCS bucket name
113
113
  - `project-id` - Google Cloud project ID
114
114
  - `prefix` - Path prefix within bucket
115
- - `credentials-file` - Path to service account credentials file (optional - uses Application Default Credentials if not provided)
116
115
 
117
116
  **AWS S3 Options:**
118
117
  - `bucket` - S3 bucket name
@@ -32,8 +32,6 @@ database:
32
32
  project-id: ""
33
33
  # Path prefix within the bucket
34
34
  prefix: ""
35
- # Path to service account credentials file (optional - uses Application Default Credentials if not set)
36
- credentials-file: ""
37
35
  s3:
38
36
  # AWS S3 bucket name
39
37
  bucket: ""
@@ -281,10 +281,10 @@ $benchmark"
281
281
  done < <(list_previous_benchmarks)
282
282
 
283
283
  # Count items (remove empty lines and count)
284
- faster_count=$(echo "$faster_benchmarks" | grep -c "^." || echo "0")
285
- slower_count=$(echo "$slower_benchmarks" | grep -c "^." || echo "0")
286
- new_count=$(echo "$new_benchmarks" | grep -c "^." || echo "0")
287
- removed_count=$(echo "$removed_benchmarks" | grep -c "^." || echo "0")
284
+ faster_count=$(echo "$faster_benchmarks" | sed '/^$/d' | wc -l)
285
+ slower_count=$(echo "$slower_benchmarks" | sed '/^$/d' | wc -l)
286
+ new_count=$(echo "$new_benchmarks" | sed '/^$/d' | wc -l)
287
+ removed_count=$(echo "$removed_benchmarks" | sed '/^$/d' | wc -l)
288
288
 
289
289
  echo ""
290
290
  echo "Performance Changes Summary:"
@@ -362,10 +362,10 @@ $benchmark"
362
362
  done < <(list_previous_benchmarks)
363
363
 
364
364
  # Count items
365
- faster_count=$(echo "$faster_benchmarks" | grep -c "^." || echo "0")
366
- slower_count=$(echo "$slower_benchmarks" | grep -c "^." || echo "0")
367
- new_count=$(echo "$new_benchmarks" | grep -c "^." || echo "0")
368
- removed_count=$(echo "$removed_benchmarks" | grep -c "^." || echo "0")
365
+ faster_count=$(echo "$faster_benchmarks" | sed '/^$/d' | wc -l)
366
+ slower_count=$(echo "$slower_benchmarks" | sed '/^$/d' | wc -l)
367
+ new_count=$(echo "$new_benchmarks" | sed '/^$/d' | wc -l)
368
+ removed_count=$(echo "$removed_benchmarks" | sed '/^$/d' | wc -l)
369
369
 
370
370
  echo "### Summary"
371
371
  echo "- **Faster benchmarks**: $faster_count"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinklabs/dingo",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Dingo is a Cardano blockchain data node",
5
5
  "main": "index.js",
6
6
  "bin": {