Skip to content

Commit

Permalink
Merge branch 'master' into sam/25_01_30/fix/reup-connectionid-check
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel authored Jan 30, 2025
2 parents ab98387 + 4397ac2 commit b0acce5
Show file tree
Hide file tree
Showing 29 changed files with 617 additions and 234 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli-verification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
EXPECTED_VERSION="Nango CLI version: 0.0.1-$GIT_HASH"
[ "$VERSION_OUTPUT" = "$EXPECTED_VERSION" ] || { echo "Version mismatch. Expected: $EXPECTED_VERSION, got: $VERSION_OUTPUT"; exit 1; }
npx nango version --debug
npx nango init --debug
npx nango init nango-integrations --debug
cd nango-integrations
npx nango generate --debug
npx nango compile --debug
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.52.0] - 2025-01-30
## [v0.52.1] - 2025-01-30

### Added

Expand All @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
- *(persist)* Add support for merging strategy (#3389) by @TBonnin
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/5f6b7afb40a161e3c7b09bdb17764c0a099744cd by Francis Maina. Commit message: feat(google): adds fetch-documents actions for Google Docs and Google Sheets (#204) by @github-actions[bot]
- *(zapier-scim)* Add integration guide and configuration for Zapier SCIM (#3400) by @viictoo
- *(cli)* Allow init to create any directory name (#3338) by @nalanj

### Changed

Expand All @@ -30,13 +31,18 @@ All notable changes to this project will be documented in this file.
- Nango webhook ref (#3394) by @bastienbeurier
- Pagination reference (#3405) by @bastienbeurier
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/f922ae99610d196540aa0790465d507567e22c82 by Andrew Karanja. Commit message: feat(basecamp): todos sync (#205) by @github-actions[bot]
- Compress changelog images + update changelog format (#3408) by @bastienbeurier
- *(logs)* Bump elasticsearch to 8.17.0 (#3399) by @nalanj

### Fixed

- *(jobs)* Wait until runner is reachable before registering (#3397) by @TBonnin
- *(persist)* Fix express.json limit (#3401) by @TBonnin
- *(webhooks)* Regression where body wasn't logged after webhook log enrichment (#3402) by @nalanj
- *(proxy)* Apply query params outside axios (#3361) by @bodinsamuel
- *(cli)* Update dry run to exclude nango prop on output.json files (#3411) by @nalanj
- *(ui)* Change copy for connection create (#3407) by @bodinsamuel
- *(ui)* Copy snippets with secrets (#3409) by @bodinsamuel

## [v0.51.0] - 2025-01-28

Expand Down Expand Up @@ -2897,7 +2903,7 @@ All notable changes to this project will be documented in this file.
- Update Zendesk Chat configuration file (#161) by @Frenchcooc
- APIs using client_credentials as grant type (#165) by @Frenchcooc

[0.52.0]: https://github.com/NangoHQ/nango/compare/v0.51.0..0.52.0
[v0.52.1]: https://github.com/NangoHQ/nango/compare/v0.51.0..v0.52.1
[v0.51.0]: https://github.com/NangoHQ/nango/compare/v0.50.0..v0.51.0
[v0.50.0]: https://github.com/NangoHQ/nango/compare/v0.49.0..v0.50.0
[v0.49.0]: https://github.com/NangoHQ/nango/compare/v0.48.4..v0.49.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ All your integrations live in a folder called `nango-integrations`. Whether loca

To initialize your integrations folder (e.g. at the root of your repository), run:
```bash
nango init
nango init nango-integrations
```

This creates the `./nango-integrations` folder with some initial configuration and an example
Expand Down
4 changes: 2 additions & 2 deletions docs-v2/reference/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ npm install nango -g

In the folder where you want your integration folder (e.g. root of your project), run:
```bash
nango init
nango init nango-integrations
```

This creates the `./nango-integrations` folder with some initial configuration and an example
Expand Down Expand Up @@ -56,7 +56,7 @@ nango [command] --help

| Command | Description | Details |
| - | - | - |
| `nango init` | Creates the `nango-integrations` directory with a demo Github integration. | Generates `models.ts`, but not the compiled `.js` files. |
| `nango init <dir>` | Creates integrations directory `dir` with a demo Github integration. | Generates `models.ts`, but not the compiled `.js` files. |
| `nango dev` | Necessary to edit integration configurations and scripts. | Watches the `nango.yaml` and integration scripts, re-generates `models.ts` and compiled `.js` files. |
| `nango generate` | Generates an integration script `.ts` file with initial scaffold when new syncs appear in your `nango.yaml`. | Re-generates `models.ts`, not the compiled `.js` files. |
| `nango dryrun <params>` | Lets you test integration scripts locally. | |
Expand Down
Loading

0 comments on commit b0acce5

Please sign in to comment.