@freshworks/shiftleft-tools 1.1.21 → 1.1.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freshworks/shiftleft-tools",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "description": "CLI for managing Cursor rules/skills and Postman test infrastructure across Java Spring Boot and Node.js/Express projects",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -170,7 +170,7 @@ def publish(row):
170
170
  return
171
171
  try:
172
172
  import boto3
173
- dynamodb = boto3.resource('dynamodb')
173
+ dynamodb = boto3.resource('dynamodb', region_name='us-east-1')
174
174
  table = dynamodb.Table(table_name)
175
175
  table.put_item(Item=row)
176
176
  print(f'[publish_health] Published health row: {row["Repo"]} @ {row["DateTime"]}')