Skip to content

Commit 9686d30

Browse files
committedDec 12, 2024
Merge branch 'main' into glimmer-scoped-css-0.7.0
2 parents 18c214e + e1c4286 commit 9686d30

File tree

163 files changed

+6875
-2761
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+6875
-2761
lines changed
 

‎.github/workflows/manual-vscode-boxel-tools.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Package
9595
run: pnpm vscode:package
9696
working-directory: packages/vscode-boxel-tools
97-
- name: Publish
97+
- name: Publish to Visual Studio Marketplace
9898
run: |
9999
if [ "${{ inputs.environment }}" = "production" ]; then
100100
pnpm vscode:publish
@@ -104,3 +104,13 @@ jobs:
104104
working-directory: packages/vscode-boxel-tools
105105
env:
106106
VSCE_PAT: ${{ secrets.VSCE_PAT }}
107+
- name: Publish to Open VSX
108+
run: |
109+
if [ "${{ inputs.environment }}" = "production" ]; then
110+
npx ovsx publish --no-dependencies --pat $OVSX_TOKEN
111+
else
112+
npx ovsx publish --no-dependencies --pre-release --pat $OVSX_TOKEN
113+
fi
114+
working-directory: packages/vscode-boxel-tools
115+
env:
116+
OVSX_TOKEN: ${{ secrets.OVSX_TOKEN }}

‎packages/ai-bot/helpers.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,14 @@ export function constructHistory(
119119
try {
120120
rawEvent.content.data = JSON.parse(rawEvent.content.data);
121121
} catch (e) {
122-
Sentry.captureException(e);
122+
Sentry.captureException(e, {
123+
attachments: [
124+
{
125+
data: rawEvent.content.data,
126+
filename: 'rawEventContentData.txt',
127+
},
128+
],
129+
});
123130
log.error('Error parsing JSON', e);
124131
throw new HistoryConstructionError((e as Error).message);
125132
}

0 commit comments

Comments
 (0)