vgcman16
947d729fd9
Improve OpenAI provider error handling and add tests
2025-06-05 21:34:37 -05:00
KevIsDev
cdbf9ba730
refactor: update node polyfills and add buffer-polyfill plugin
...
Modify the node polyfills configuration to include additional modules and add a new buffer-polyfill plugin to handle Buffer imports in env.mjs files. This change ensures compatibility with required Node.js modules in the Vite environment.
2025-04-02 21:38:50 +01:00
KevIsDev
c63732d2f4
fix: simplify the SHA-1 hash function in api.netlify-deploy.ts by using the crypto module directly this allows it to work in both dev and prod environments.
...
also extract Netlify and Vercel deploy logic into separate components
Move the Netlify and Vercel deployment logic from HeaderActionButtons.client.tsx into dedicated components (NetlifyDeploy.client.tsx and VercelDeploy.client.tsx) to improve code maintainability and reusability.
2025-04-02 16:47:04 +01:00
Stijnus
47444970e8
feat: bugfix for : Problem Temporarily Solved, Not Fix: Error building my application #1414 ( #1567 )
...
* V1
## [Unreleased] - 2025-03-28
### ✅ Fixed
- Fixed deployment errors on Cloudflare Pages caused by:
- Missing or outdated `compatibility_date` and `compatibility_flags` in `wrangler.toml`
- Use of Node.js built-ins (`crypto`, `stream`) in functions without proper polyfilling
- Invalid Wrangler CLI options (`--log-level`) used during deployment
- Type error when importing the Remix server build
### 🛠 Changed
- `wrangler.toml` updated:
```toml
name = "bolt"
compatibility_date = "2025-03-28"
compatibility_flags = ["nodejs_compat"]
pages_build_output_dir = "./build/client"
send_metrics = false
```
- `functions/[[path]].ts` updated:
```ts
import type { ServerBuild } from '@remix-run/cloudflare';
import { createPagesFunctionHandler } from '@remix-run/cloudflare-pages';
import * as serverBuild from '../build/server';
export const onRequest = createPagesFunctionHandler({
build: serverBuild as unknown as ServerBuild,
});
```
### 🚀 Deployment
- Successful deployment to:
- Preview: https://979e2ca9.bolt-55b.pages.dev
- Production: https://main.bolt-55b.pages.dev
* V1
## [Unreleased] - 2025-03-28
### ✅ Fixed
- Fixed deployment errors on Cloudflare Pages caused by:
- Missing or outdated `compatibility_date` and `compatibility_flags` in `wrangler.toml`
- Use of Node.js built-ins (`crypto`, `stream`) in functions without proper polyfilling
- Invalid Wrangler CLI options (`--log-level`) used during deployment
- Type error when importing the Remix server build
### 🛠 Changed
- `wrangler.toml` updated:
```toml
name = "bolt"
compatibility_date = "2025-03-28"
compatibility_flags = ["nodejs_compat"]
pages_build_output_dir = "./build/client"
send_metrics = false
```
- `functions/[[path]].ts` updated:
```ts
import type { ServerBuild } from '@remix-run/cloudflare';
import { createPagesFunctionHandler } from '@remix-run/cloudflare-pages';
import * as serverBuild from '../build/server';
export const onRequest = createPagesFunctionHandler({
build: serverBuild as unknown as ServerBuild,
});
```
### 🚀 Deployment
- Successful deployment to:
- Preview: https://979e2ca9.bolt-55b.pages.dev
- Production: https://main.bolt-55b.pages.dev
* feat: small bugfix
2025-03-29 10:26:42 +01:00
Stijnus
50dd74de07
fix: settings bugfix error building my application issue #1414 ( #1436 )
...
Docker Publish / docker-build-publish (push) Has been cancelled
Update Stable Branch / prepare-release (push) Has been cancelled
* Fix: error building my application #1414
* fix for vite
* Update vite.config.ts
* Update root.tsx
* fix the root.tsx and the debugtab
* lm studio fix and fix for the api key
* Update api.enhancer for prompt enhancement
* bugfixes
* Revert api.enhancer.ts back to original code
* Update api.enhancer.ts
* Update api.git-proxy.$.ts
* Update api.git-proxy.$.ts
* Update api.enhancer.ts
2025-03-09 01:07:56 +05:30
KevIsDev
bffb8a2a90
Revert "Merge pull request #1335 from Toddyclipsgg/diff-view-v2"
...
Docker Publish / docker-build-publish (push) Has been cancelled
Update Stable Branch / prepare-release (push) Has been cancelled
This reverts commit 871aefbe83
, reversing
changes made to 8c72ed76b3
.
2025-02-21 15:01:09 +00:00
Toddyclipsgg
382bf2c9a3
feat: Add Diff View and File History Tracking
...
- Implemented a new Diff view in the Workbench to track file changes
- Added file history tracking with version control and change tracking
- Created a FileModifiedDropdown to browse and manage modified files
- Enhanced ActionRunner to support file history persistence
- Updated Workbench and BaseChat components to support new diff view functionality
- Added support for inline and side-by-side diff view modes
2025-02-16 23:10:15 -03:00
Stijnus
d1d23d80e7
big fixes
...
fixes feedback from thecodacus
2025-01-30 17:17:36 +01:00
Stijnus
c4c73622f5
Fix ESLint issues
2025-01-28 11:39:12 +01:00
Stijnus
0db9ce2717
Revert "Major UI improvements"
...
This reverts commit 6e52114172
.
2025-01-28 10:28:45 +01:00
Stijnus
6e52114172
Major UI improvements
2025-01-28 01:33:19 +01:00
Anirban Kar
49c7129ded
fix: ollama and lm studio url issue fix for docker and build ( #1008 )
...
* fix: ollama and lm studio url issue fix for docker and build
* vite config fix
2025-01-06 19:18:42 +05:30
Anirban Kar
63abf52000
fix hotfix for version metadata issue ( #853 )
2024-12-21 02:24:57 +05:30
Anirban Kar
d8a277f0ac
refactor: updated vite config to inject add version metadata into the app on build ( #841 )
...
* refactor: removes commit.json and used vite.config to load these variables
* updated precommit hook
* updated the pre start script
* updated the workflows
2024-12-21 01:03:28 +05:30
Anirban Kar
b892d708ec
removed logs and openAI fix
2024-12-18 21:55:17 +05:30
Anirban Kar
6975083fb9
stopped apikeys set to envfile being exposed to UI
2024-12-18 21:31:50 +05:30
Anirban Kar
283eb22ae5
added indicator on settings menu
2024-12-18 20:04:43 +05:30
Dustin Loring
fb8191ebb0
Update vite.config.ts
...
added v3_lazyRouteDiscovery to the fvite.config.ts without any side effects.
this removes the warning in terminal
2024-12-15 15:20:22 -05:00
Anirban Kar
5ead47992d
Merge branch 'main' into together-ai-dynamic-model-list
2024-12-06 16:35:36 +05:30
Anirban Kar
1589d2a8f5
feat(Dynamic Models): together AI Dynamic Models
2024-12-03 02:13:33 +05:30
Andrew Trokhymenko
235747af51
merge with upstream
2024-12-02 14:55:43 -05:00
Dustin Loring
0be52a9510
added the v3_lazyRouteDiscovery flag
2024-12-02 06:57:38 -05:00
Karrot0
4edcc5e331
LM Studio Integration
2024-10-27 23:16:07 -04:00
Cole Medin
4660e5b882
Merge branch 'main' into main
2024-10-24 08:19:59 -05:00
Gaoyao Massimo Hu
9f2db7b683
chore: Update environment variable names for OpenAI Like integration
2024-10-23 16:43:27 +01:00
Gaoyao Massimo Hu
30dfa4fda4
chore: Add environment variables for OpenAI API Like integration
2024-10-23 16:36:12 +01:00
muzafferkadir
49217f2461
feat: added sync files to selected local folder function is created. Yarn package manager fixes, styling fixes. Sass module fix. Added Claude model for open router.
2024-10-22 01:27:29 +03:00
Sam Denty
d0828e4c86
fix(chrome-129): show issue page ( #157 )
2024-10-07 14:20:42 +00:00
Sam Denty
6fb59d2bc5
fix: remove monorepo
2024-09-25 19:54:09 +01:00