Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
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
7 changes: 7 additions & 0 deletions packages/connect-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

# Changelog

## [2.4.0] - 2025-12-10

### Added

- Added support for `http_request` prop type with `ControlHttpRequest` component
- HTTP request builder UI with URL, method, headers, and body configuration

## [2.3.0] - 2025-12-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/connect-react",
"version": "2.3.0",
"version": "2.4.0",
"description": "Pipedream Connect library for React",
"files": [
"dist"
Expand Down
3 changes: 3 additions & 0 deletions packages/connect-react/src/components/Control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { ControlApp } from "./ControlApp";
import { ControlArray } from "./ControlArray";
import { ControlBoolean } from "./ControlBoolean";
import { ControlInput } from "./ControlInput";
import { ControlHttpRequest } from "./ControlHttpRequest";
import { ControlObject } from "./ControlObject";
import { ControlSelect } from "./ControlSelect";
import { ControlSql } from "./ControlSql";
Expand Down Expand Up @@ -81,6 +82,8 @@ export function Control<T extends ConfigurableProps, U extends ConfigurableProp>
return <ControlObject />;
case "sql":
return <ControlSql />;
case "http_request":
return <ControlHttpRequest />;
default:
// TODO "not supported prop type should bubble up"
throw new Error("Unsupported property type: " + prop.type);
Expand Down
Loading
Loading