Skip to content

Commit

Permalink
chore(release): 0.40.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Bot committed Jun 18, 2024
1 parent 1d98584 commit ebe82ba
Show file tree
Hide file tree
Showing 11 changed files with 193 additions and 30 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [v0.40.3] - 2024-06-18

### Changed

- *(deps)* Bump braces from 3.0.2 to 3.0.3 (#2304) by @dependabot[bot]
- *(deps)* Bump ws from 8.16.0 to 8.17.1 (#2354) by @dependabot[bot]
- Prevent concurrent scheduling (#2359) by @TBonnin

### Fixed

- *(orchestrator)* Update message when updating frequency (#2355) by @bodinsamuel
- *(integration-templates)* [nan-1239] fix integration-template upload (#2356) by @khaliqgant
- *(jobs)* Initialize tracer in processing worker threads (#2361) by @TBonnin
- *(logs)* Insert message without an ID (#2360) by @bodinsamuel
- *(nango-yaml)* Allow endpoint to be reused across integration (#2365) by @bodinsamuel

## [v0.40.2] - 2024-06-18

### Added
Expand Down Expand Up @@ -1347,6 +1363,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.40.3]: https://github.com/NangoHQ/nango/compare/v0.40.2..v0.40.3
[v0.40.2]: https://github.com/NangoHQ/nango/compare/v0.40.1..v0.40.2
[v0.40.1]: https://github.com/NangoHQ/nango/compare/v0.40.0..v0.40.1
[v0.40.0]: https://github.com/NangoHQ/nango/compare/v0.39.33..v0.40.0
Expand Down
174 changes: 160 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.40.2",
"version": "0.40.3",
"description": "Nango's CLI tool.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -24,8 +24,8 @@
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@nangohq/nango-yaml": "^0.40.2",
"@nangohq/shared": "^0.40.2",
"@nangohq/nango-yaml": "^0.40.3",
"@nangohq/shared": "^0.40.3",
"@swc/core": "^1.5.25",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
Expand Down Expand Up @@ -56,7 +56,7 @@
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@nangohq/types": "^0.40.2",
"@nangohq/types": "^0.40.3",
"@types/babel__traverse": "^7.20.1",
"@types/babel-traverse": "^6.25.7",
"@types/commander": "^2.12.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/frontend",
"version": "0.40.2",
"version": "0.40.3",
"description": "Nango's frontend library for OAuth handling.",
"type": "module",
"main": "dist/index.js",
Expand Down
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.40.2",
"version": "0.40.3",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -17,7 +17,7 @@
"ms": "3.0.0-canary.1"
},
"devDependencies": {
"@nangohq/types": "^0.40.2",
"@nangohq/types": "^0.40.3",
"vitest": "0.33.0"
},
"files": [
Expand Down
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.40.2';
export const NANGO_VERSION = '0.40.3';
Loading

0 comments on commit ebe82ba

Please sign in to comment.