Skip to content

Commit

Permalink
chore(release): 0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Bot committed Nov 14, 2024
1 parent 4b37eaa commit a81fe2b
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 35 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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

## [v0.44.0] - 2024-11-14

### Added

- *(authmode)* Add a new signature authmode (#2942) by @hassan254-prog
- *(integrations)* Add support for emarsys core api (#2944) by @hassan254-prog
- *(integrations)* Add support for brightcrowd (#2962) by @hassan254-prog
- *(api)* Expose providers.yaml through server (#2978) by @nalanj
- *(endpoints)* Store and use "group“ (#2966) by @bodinsamuel

### Changed

- Otlp export (#2977) by @TBonnin

### Fixed

- Lint PR github action is optional on merge queue by @TBonnin
- *(integrations)* Missing base_url for mindbody (#2981) by @bodinsamuel
- *(providers)* Fix whatsapp apiKey regex (#2982) by @hassan254-prog
- *(deploy runner)* For doesn't split json lines properly (#2985) by @TBonnin

## [v0.43.0] - 2024-11-13

### Added
Expand Down Expand Up @@ -2279,6 +2300,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.44.0]: https://github.com/NangoHQ/nango/compare/v0.43.0..v0.44.0
[v0.43.0]: https://github.com/NangoHQ/nango/compare/v0.42.22..v0.43.0
[v0.42.22]: https://github.com/NangoHQ/nango/compare/v0.42.21..v0.42.22
[v0.42.21]: https://github.com/NangoHQ/nango/compare/v0.42.20..v0.42.21
Expand Down
32 changes: 16 additions & 16 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 packages/cli/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const NANGO_VERSION = '0.43.0';
export const NANGO_VERSION = '0.44.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.43.0",
"version": "0.44.0",
"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.43.0",
"@nangohq/shared": "^0.43.0",
"@nangohq/nango-yaml": "0.44.0",
"@nangohq/shared": "^0.44.0",
"@swc/core": "^1.5.25",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
Expand Down Expand Up @@ -55,7 +55,7 @@
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@nangohq/types": "0.43.0",
"@nangohq/types": "0.44.0",
"@types/babel__traverse": "^7.20.1",
"@types/babel-traverse": "^6.25.7",
"@types/commander": "^2.12.2",
Expand Down
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.43.0",
"version": "0.44.0",
"description": "Nango's frontend library for OAuth handling.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -15,7 +15,7 @@
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
"scripts": {},
"devDependencies": {
"@nangohq/types": "0.43.0"
"@nangohq/types": "0.44.0"
},
"files": [
"dist/**/*.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.43.0",
"version": "0.44.0",
"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.43.0",
"@nangohq/types": "0.44.0",
"vitest": "1.6.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.43.0';
export const NANGO_VERSION = '0.44.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.43.0",
"version": "0.44.0",
"description": "Nango's Node client.",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"README.md"
],
"devDependencies": {
"@nangohq/types": "0.43.0",
"@nangohq/types": "0.44.0",
"tsup": "^8.2.4",
"vitest": "1.6.0"
}
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.43.0';
export const NANGO_VERSION = '0.44.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.43.0",
"version": "0.44.0",
"description": "Nango's shared components.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -22,8 +22,8 @@
"@datadog/datadog-api-client": "1.26.0",
"@hapi/boom": "^10.0.1",
"@nangohq/database": "file:../database",
"@nangohq/nango-yaml": "0.43.0",
"@nangohq/node": "^0.43.0",
"@nangohq/nango-yaml": "0.44.0",
"@nangohq/node": "^0.44.0",
"@nangohq/utils": "file:../utils",
"@sentry/node": "^7.119.2",
"ajv": "^8.12.0",
Expand Down Expand Up @@ -54,7 +54,7 @@
"devDependencies": {
"@nangohq/logs": "file:../logs",
"@nangohq/nango-orchestrator": "file:../orchestrator",
"@nangohq/types": "0.43.0",
"@nangohq/types": "0.44.0",
"@sentry/types": "7.112.2",
"@types/braintree": "^3.3.12",
"@types/js-yaml": "^4.0.5",
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.43.0",
"version": "0.44.0",
"description": "Types used in Nango applications",
"type": "module",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@heroicons/react": "2.1.5",
"@mantine/core": "7.12.1",
"@mantine/prism": "5.10.5",
"@nangohq/frontend": "^0.43.0",
"@nangohq/frontend": "^0.44.0",
"@nangohq/server": "file:../server",
"@nangohq/types": "file:../types",
"@radix-ui/react-avatar": "1.1.1",
Expand Down

0 comments on commit a81fe2b

Please sign in to comment.