Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3b56f96
feat: integrate AI plugin and configure LLMs in preferences (#9192)
ryan-willis Oct 1, 2025
47edb22
feat: mock server gen (#9201)
shelby-moore Oct 2, 2025
3c3433d
add ipc handler methods in front of llm config service (#9202)
ryan-willis Oct 2, 2025
d68d92e
feat: gemini first class config support (#9209)
ryan-willis Oct 2, 2025
3a39d45
chore: call plugin from utility process (#9210)
shelby-moore Oct 3, 2025
1cf47a4
feat: additional mock server event tracking (#9215)
shelby-moore Oct 8, 2025
ba889fe
feat(Git Commit): Automatically generate commits (#9164)
gatzjames Oct 8, 2025
84579ed
fix: ensure data dir exists prior to reading (#9220)
ryan-willis Oct 8, 2025
56d9cad
feat: mock server gen ux improvements (#9221)
shelby-moore Oct 8, 2025
83b70d4
fix: include mockgen script in build (#9222)
ryan-willis Oct 9, 2025
7d91ffb
feat: add git commit generation process to build script (#9226)
gatzjames Oct 9, 2025
1e4bec0
fix: set min height for git folder selector (#9242)
shelby-moore Oct 10, 2025
e958c96
chore: ai plugin 1.0.4 (#9243)
shelby-moore Oct 10, 2025
c4b63d5
feat: toggle ai features (#9232)
shelby-moore Oct 14, 2025
1365a22
feat: track commit generation and saving events for analytics (#9293)
gatzjames Oct 22, 2025
9e16daf
fix(build): add x64ArchFiles option back (#9297)
ryan-willis Oct 22, 2025
0d639e0
fix: autoselect self hosted mock when cloud mock disabled (#9299)
shelby-moore Oct 22, 2025
6a048dc
fix: hide ai settings from scratch pad user (#9300)
ryan-willis Oct 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release-recurring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,13 @@ jobs:

- name: Install packages
run: npm ci
env:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install x64 version of native Mac dependencies
run: npm run install-x64-native-dependencies -w insomnia
if: ${{ matrix.os == 'macos-latest-large' }}

- name: Bump version
shell: bash
run: npm --workspaces version prerelease --preid="alpha-pr-$(git rev-parse --short HEAD)" --no-git-tag-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Install packages
run: npm ci
env:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install node version of node-libcurl for inso tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Install packages
run: npm ci
env:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build app for smoke tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Install packages
run: npm ci
env:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Lint
Expand Down
Loading
Loading