Skip to content

Commit ab5d01e

Browse files
authored
Release v1.54.1 (#1244)
fix: pin js-tracer-version in ci fix: allow adding of if-then immediately after for-each
2 parents b081b39 + 6980d4d commit ab5d01e

File tree

6 files changed

+21
-19
lines changed

6 files changed

+21
-19
lines changed

.github/workflows/test-and-build.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,23 @@ jobs:
1919
- run: npm ci
2020
env:
2121
NPM_TASKFORCESH_TOKEN: ${{ secrets.NPM_TASKFORCESH_TOKEN }}
22-
# - name: Configure Datadog Test Visibility
23-
# env:
24-
# DD_SERVICE_NAME: ${{ secrets.DD_SERVICE_NAME }}
25-
# DD_API_KEY: ${{ secrets.DD_API_KEY }}
26-
# uses: datadog/test-visibility-github-action@v1
27-
# with:
28-
# languages: js
29-
# service: ${{ secrets.DD_SERVICE_NAME }}
30-
# api_key: ${{ secrets.DD_API_KEY }}
22+
- name: Configure Datadog Test Visibility
23+
env:
24+
DD_SERVICE_NAME: ${{ secrets.DD_SERVICE_NAME }}
25+
DD_API_KEY: ${{ secrets.DD_API_KEY }}
26+
uses: datadog/test-visibility-github-action@v2
27+
with:
28+
languages: js
29+
service: ${{ secrets.DD_SERVICE_NAME }}
30+
api_key: ${{ secrets.DD_API_KEY }}
31+
# we need to pin this for now since 5.68.0 breaks the ci
32+
js-tracer-version: 5.67.0
3133
- run: npm run lint
3234
- run: echo "✅ Your code has been linted."
3335
- run: npm run test
34-
# env:
35-
# # Required to allow Datadog to trace Vitest tests
36-
# NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} --import ${{ env.DD_TRACE_ESM_IMPORT }}
36+
env:
37+
# Required to allow Datadog to trace Vitest tests
38+
NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} --import ${{ env.DD_TRACE_ESM_IMPORT }}
3739
- run: echo "✅ All tests passed."
3840
- run: VITE_MODE=test npm run build
3941
- run: echo "✅ Your code has been built."

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@
111111
"tsconfig-paths": "^4.2.0",
112112
"type-fest": "4.10.3"
113113
},
114-
"version": "1.54.0"
114+
"version": "1.54.1"
115115
}

packages/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "1.54.0",
3+
"version": "1.54.1",
44
"type": "module",
55
"scripts": {
66
"dev": "wait-on tcp:3000 && vite --host --force",

packages/frontend/src/components/FlowStepGroup/Content/ForEach/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default function ForEach(props: ForEachProps) {
6969
<GroupStepWithAddButton
7070
step={conditionStep}
7171
canAddStep={true}
72-
isLastStep={false}
72+
isLastStep={hasNoActionSteps}
7373
allowReorder={false}
7474
showEmptyAction={hasNoActionSteps}
7575
canChildStepsReorder={actionSteps.length > 1}

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "@plumber/types",
33
"description": "Shared types for plumber",
44
"types": "./index.d.ts",
5-
"version": "1.54.0"
5+
"version": "1.54.1"
66
}

0 commit comments

Comments
 (0)