Skip to content

Commit

Permalink
chore(release): 0.39.32
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Bot committed May 28, 2024
1 parent 4728913 commit 49142c9
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 29 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [v0.39.32] - 2024-05-28

### Added

- *(server)* [nan-981] prep for implementing error reporting UI on connection authorization sub (#2204) by @khaliqgant

### Fixed

- *(docker)* Wrong node version for jobs (#2211) by @bodinsamuel

## [v0.39.31] - 2024-05-27

### Added
Expand Down Expand Up @@ -1168,6 +1178,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.39.32]: https://github.com/NangoHQ/nango/compare/v0.39.31..v0.39.32
[v0.39.31]: https://github.com/NangoHQ/nango/compare/v0.39.30..v0.39.31
[v0.39.30]: https://github.com/NangoHQ/nango/compare/v0.39.29..v0.39.30
[v0.39.29]: https://github.com/NangoHQ/nango/compare/v0.39.28..v0.39.29
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nangohq/nango",
"type": "module",
"version": "0.39.31",
"version": "0.39.32",
"workspaces": [
"packages/cli",
"packages/shared",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nango",
"version": "0.39.31",
"version": "0.39.32",
"description": "Nango's CLI tool.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -27,7 +27,7 @@
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@inquirer/prompts": "^2.3.0",
"@nangohq/shared": "^0.39.31",
"@nangohq/shared": "^0.39.32",
"@vercel/ncc": "^0.36.1",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
Expand Down Expand Up @@ -57,7 +57,7 @@
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@nangohq/types": "^0.39.31",
"@nangohq/types": "^0.39.32",
"@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.39.31",
"version": "0.39.32",
"description": "Nango's frontend library for OAuth handling.",
"type": "module",
"main": "dist/index.js",
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.39.31';
export const NANGO_VERSION = '0.39.32';
2 changes: 1 addition & 1 deletion packages/node-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/node",
"version": "0.39.31",
"version": "0.39.32",
"description": "Nango's Node client.",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@nangohq/nango-orchestrator": "file:../orchestrator",
"@nangohq/records": "file:../records",
"@nangohq/shared": "file:../shared",
"@nangohq/types": "^0.39.31",
"@nangohq/types": "^0.39.32",
"@nangohq/utils": "file:../utils",
"@workos-inc/node": "^6.2.0",
"axios": "^1.3.4",
Expand Down
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.39.31';
export const NANGO_VERSION = '0.39.32';
6 changes: 3 additions & 3 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nangohq/shared",
"version": "0.39.31",
"version": "0.39.32",
"description": "Nango's shared components.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"@aws-sdk/client-s3": "3.348.0",
"@datadog/datadog-api-client": "^1.16.0",
"@hapi/boom": "^10.0.1",
"@nangohq/node": "^0.39.31",
"@nangohq/node": "^0.39.32",
"@nangohq/utils": "file:../utils",
"@sentry/node": "^7.106.0",
"@temporalio/client": "^1.9.1",
Expand Down Expand Up @@ -64,7 +64,7 @@
"@nangohq/logs": "file:../logs",
"@nangohq/nango-orchestrator": "file:../orchestrator",
"@nangohq/records": "file:../records",
"@nangohq/types": "^0.39.31",
"@nangohq/types": "^0.39.32",
"@octokit/types": "^9.2.1",
"@types/amqplib": "^0.8.2",
"@types/cors": "^2.8.12",
Expand Down
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.39.31",
"version": "0.39.32",
"description": "Types used in Nango applications",
"type": "module",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"@heroicons/react": "2.0.18",
"@mantine/core": "7.9.0",
"@mantine/prism": "5.10.5",
"@nangohq/frontend": "^0.39.31",
"@nangohq/frontend": "^0.39.32",
"@nangohq/server": "file:../server",
"@nangohq/types": "^0.39.31",
"@nangohq/types": "^0.39.32",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-icons": "1.3.0",
Expand Down

0 comments on commit 49142c9

Please sign in to comment.