Skip to content

Commit

Permalink
chore(release): 0.48.0
Browse files Browse the repository at this point in the history
Release Bot committed Dec 18, 2024
1 parent 007f69c commit b4c68ab
Showing 12 changed files with 283 additions and 43 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,51 @@

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

## [v0.48.0] - 2024-12-18

### Added

- *(cli)* Support saving error responses in dryrun (#3138) by @nalanj
- *(integration)* Back fill missing base url (#3155) by @hassan254-prog
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/652ac8560ed492acc840d5337ef53450aa8b12d6 by Francis Maina. Commit message: feat(integration): adds ramp user-provision integration (#152) by @github-actions[bot]
- *(api)* GET /connection returns end_user (#3169) by @bodinsamuel
- *(api)* GET /connection search in end user (#3170) by @bodinsamuel
- *(fleet)* Add tracing around supervisor plan/execute (#3163) by @TBonnin
- *(docs)* Webflow sync (#3156) by @nalanj
- *(integrations)* Add support for lastpass (#3171) by @hassan254-prog
- *(exact-online)* Add reset headers for exact online (#3185) by @khaliqgant
- *(website)* Add webflow sync action (#3178) by @nalanj
- *(integration)* Adds support for Canva SCIM (#3184) by @Maina-Francis
- *(webhooks)* Enable all types by default (#3189) by @bodinsamuel
- *(integrations)* Update basic auth configuration field names (#3190) by @hassan254-prog
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/f7a51d95fb67185db9bfb016979802196dca9c53 by Hassan_Wari. Commit message: feat(lastpass): add integrations for lastpass (#159) by @github-actions[bot]
- *(integrations)* Add support for emarsys oauth (#3192) by @hassan254-prog

### Changed

- Remove old templates + polish (#3175) by @bastienbeurier
- *(eslint)* Restrict-template-expressions (#3186) by @bodinsamuel
- Api unification (#3188) by @bastienbeurier
- *(ci)* Generate docs dynamically in pre-commit hook (#3183) by @nalanj
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/70080800c8ad09181a643f4f20f85c4e5634dbbe by Khaliq. Commit message: feat(gorgias): [ext-251] gorgias ticket (#162) by @github-actions[bot]

### Fixed

- *(docs)* Update 'Build your own' link in use cases in docs (#3168) by @nalanj
- *(server)* Drastically reduce memory usage in proxy (#3172) by @nalanj
- Fix broken links (#3176) by @khaliqgant
- *(base-url)* Fix lastpass base url (#3181) by @hassan254-prog
- *(docs)* Update lastpass to new doc structure (#3182) by @nalanj
- *(api)* POST /webhook new format (#3179) by @bodinsamuel
- *(config)* Various bug fixes (#3187) by @bodinsamuel
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/cfeeae65e2a95eda24c3bf6a8d444a07debe57f9 by Khaliq. Commit message: fix(pagination): rename and update action param (#161) by @github-actions[bot]
- *(docs)* Fix up use case urls (#3194) by @nalanj
- *(ui)* Remove sync ui Learn More link under empty cache (#3195) by @nalanj
- *(integration-templates)* Automated commit updating flows.yaml based on changes in https://github.com/NangoHQ/integration-templates/commit/a4b5439d8a74f2d28a0c63e0958de8838b46de4f by Khaliq. Commit message: fix(notion): tweak yaml (#165) by @github-actions[bot]
- *(integrations)* Fix emarsys wsse auth (#3193) by @hassan254-prog
- *(docs)* Update read-from-an-api.mdx (#3196) by @nalanj
- *(api)* GET /connection/:id new format (#3177) by @bodinsamuel

## [v0.47.1] - 2024-12-13

### Added
@@ -2568,6 +2613,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

[v0.48.0]: https://github.com/NangoHQ/nango/compare/v0.47.1..v0.48.0
[v0.47.1]: https://github.com/NangoHQ/nango/compare/v0.47.0..v0.47.1
[v0.47.0]: https://github.com/NangoHQ/nango/compare/v0.46.1..v0.47.0
[v0.46.1]: https://github.com/NangoHQ/nango/compare/v0.46.0..v0.46.1
242 changes: 218 additions & 24 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cli/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const NANGO_VERSION = '0.47.1';
export const NANGO_VERSION = '0.48.0';
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nango",
"version": "0.47.1",
"version": "0.48.0",
"description": "Nango's CLI tool.",
"type": "module",
"main": "dist/index.js",
@@ -24,8 +24,8 @@
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@nangohq/nango-yaml": "0.47.1",
"@nangohq/shared": "^0.47.1",
"@nangohq/nango-yaml": "0.48.0",
"@nangohq/shared": "^0.48.0",
"@swc/core": "^1.5.25",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
@@ -55,7 +55,7 @@
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@nangohq/types": "0.47.1",
"@nangohq/types": "0.48.0",
"@types/babel__traverse": "^7.20.1",
"@types/babel-traverse": "^6.25.7",
"@types/commander": "^2.12.2",
4 changes: 2 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/frontend",
"version": "0.47.1",
"version": "0.48.0",
"description": "Nango's frontend library for OAuth handling.",
"type": "module",
"main": "dist/index.js",
@@ -15,7 +15,7 @@
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
"scripts": {},
"devDependencies": {
"@nangohq/types": "0.47.1"
"@nangohq/types": "0.48.0"
},
"files": [
"dist/**/*.js",
4 changes: 2 additions & 2 deletions packages/nango-yaml/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/nango-yaml",
"version": "0.47.1",
"version": "0.48.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
@@ -17,7 +17,7 @@
"ms": "3.0.0-canary.1"
},
"devDependencies": {
"@nangohq/types": "0.47.1",
"@nangohq/types": "0.48.0",
"vitest": "1.6.0"
},
"files": [
2 changes: 1 addition & 1 deletion packages/node-client/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const NANGO_VERSION = '0.47.1';
export const NANGO_VERSION = '0.48.0';
4 changes: 2 additions & 2 deletions packages/node-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/node",
"version": "0.47.1",
"version": "0.48.0",
"description": "Nango's Node client.",
"type": "module",
"main": "dist/index.js",
@@ -36,7 +36,7 @@
"README.md"
],
"devDependencies": {
"@nangohq/types": "0.47.1",
"@nangohq/types": "0.48.0",
"tsup": "^8.2.4",
"vitest": "1.6.0"
}
2 changes: 1 addition & 1 deletion packages/shared/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const NANGO_VERSION = '0.47.1';
export const NANGO_VERSION = '0.48.0';
8 changes: 4 additions & 4 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/shared",
"version": "0.47.1",
"version": "0.48.0",
"description": "Nango's shared components.",
"type": "module",
"main": "dist/index.js",
@@ -22,8 +22,8 @@
"@datadog/datadog-api-client": "1.26.0",
"@hapi/boom": "^10.0.1",
"@nangohq/database": "file:../database",
"@nangohq/nango-yaml": "0.47.1",
"@nangohq/node": "^0.47.1",
"@nangohq/nango-yaml": "0.48.0",
"@nangohq/node": "^0.48.0",
"@nangohq/utils": "file:../utils",
"@sentry/node": "^7.119.2",
"ajv": "^8.12.0",
@@ -55,7 +55,7 @@
"devDependencies": {
"@nangohq/logs": "file:../logs",
"@nangohq/nango-orchestrator": "file:../orchestrator",
"@nangohq/types": "0.47.1",
"@nangohq/types": "0.48.0",
"@sentry/types": "7.112.2",
"@types/braintree": "^3.3.12",
"@types/js-yaml": "^4.0.5",
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/types",
"version": "0.47.1",
"version": "0.48.0",
"description": "Types used in Nango applications",
"type": "module",
"typings": "dist/index.d.ts",
2 changes: 1 addition & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@
"@heroicons/react": "2.1.5",
"@mantine/core": "7.12.1",
"@mantine/prism": "5.10.5",
"@nangohq/frontend": "^0.47.1",
"@nangohq/frontend": "^0.48.0",
"@nangohq/server": "file:../server",
"@nangohq/types": "file:../types",
"@radix-ui/react-avatar": "1.1.1",

0 comments on commit b4c68ab

Please sign in to comment.