Skip to content

Commit b167bf5

Browse files
author
Release Bot
committed
chore(release): 0.69.3
1 parent a949fa4 commit b167bf5

File tree

14 files changed

+76
-46
lines changed

14 files changed

+76
-46
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

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

5+
## [v0.69.3] - 2025-10-10
6+
7+
### Added
8+
9+
- *(integrations)* Add support for adobe workfront (#4806) by @hassan254-prog
10+
- *(integrations)* Generate fingerprint instead of requiring one to be supplied for snowflake(JWT) (#4793) by @hassan254-prog
11+
- *(stack-trace-for-functions)* Output stack trace (#4821) by @khaliqgant
12+
- *(ux)* Warn about console.log in functions (#4822) by @khaliqgant
13+
- Add dd metrics for orb billing event ingestion (#4826) by @TBonnin
14+
- *(webapp)* Redesign Getting Started (#4802) by @kaposke
15+
- *(internal)* Add api to retrieve users by account id (#4828) by @rossmcewan
16+
- *(integrations)* Allow `sharepoint-online-v2` and `one-drive` to store sharepoint access tokens in connectionConfig (#4823) by @hassan254-prog
17+
- *(docs)* Add note about .nango directory (#4834) by @khaliqgant
18+
19+
### Changed
20+
21+
- More logging cleaning (#4824) by @TBonnin
22+
- Update version in manifest by @actions-user
23+
24+
### Fixed
25+
26+
- Remove update of sync last_fetched_at. it is not being used (#4820) by @TBonnin
27+
- Remove color-scheme declaration (#4816) by @kaposke
28+
- *(npm-audit)* Audit fixes (#4808) by @khaliqgant
29+
- *(docs)* Spec issues (#4825) by @khaliqgant
30+
- Otlp export of actions (#4827) by @TBonnin
31+
- *(managed-release)* Bitnami has deprecated support for many public … (#4831) by @rossmcewan
32+
- *(docs)* Add tighter validation (#4830) by @khaliqgant
33+
534
## [v0.69.2] - 2025-10-06
635

736
### Added
@@ -5073,6 +5102,7 @@ All notable changes to this project will be documented in this file.
50735102
- Update Zendesk Chat configuration file (#161) by @Frenchcooc
50745103
- APIs using client_credentials as grant type (#165) by @Frenchcooc
50755104

5105+
[v0.69.3]: https://github.com/NangoHQ/nango/compare/v0.69.2..v0.69.3
50765106
[v0.69.2]: https://github.com/NangoHQ/nango/compare/v0.69.1..v0.69.2
50775107
[v0.69.1]: https://github.com/NangoHQ/nango/compare/v0.69.0..v0.69.1
50785108
[v0.69.0]: https://github.com/NangoHQ/nango/compare/v0.68.0..v0.69.0

package-lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nangohq/nango",
33
"type": "module",
4-
"version": "0.69.2",
4+
"version": "0.69.3",
55
"workspaces": [
66
"packages/*",
77
"scripts"

packages/cli/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const NANGO_VERSION = '0.69.2';
1+
export const NANGO_VERSION = '0.69.3';

packages/cli/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nango",
3-
"version": "0.69.2",
3+
"version": "0.69.3",
44
"description": "Nango's CLI tool.",
55
"type": "module",
66
"bin": {
@@ -40,10 +40,10 @@
4040
"@babel/traverse": "7.28.0",
4141
"@babel/types": "7.28.2",
4242
"@babel/preset-typescript": "7.27.1",
43-
"@nangohq/nango-yaml": "0.69.2",
44-
"@nangohq/node": "0.69.2",
45-
"@nangohq/providers": "0.69.2",
46-
"@nangohq/runner-sdk": "0.69.2",
43+
"@nangohq/nango-yaml": "0.69.3",
44+
"@nangohq/node": "0.69.3",
45+
"@nangohq/providers": "0.69.3",
46+
"@nangohq/runner-sdk": "0.69.3",
4747
"@swc/core": "1.13.2",
4848
"@types/unzipper": "0.10.11",
4949
"ajv": "8.17.1",
@@ -76,7 +76,7 @@
7676
"zod": "4.0.5"
7777
},
7878
"devDependencies": {
79-
"@nangohq/types": "0.69.2",
79+
"@nangohq/types": "0.69.3",
8080
"@types/babel__core": "7.20.5",
8181
"@types/babel__traverse": "7.20.7",
8282
"@types/columnify": "1.5.4",

packages/frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nangohq/frontend",
3-
"version": "0.69.2",
3+
"version": "0.69.3",
44
"description": "Nango's frontend library for OAuth handling.",
55
"type": "module",
66
"main": "dist/index.js",
@@ -15,7 +15,7 @@
1515
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
1616
"scripts": {},
1717
"dependencies": {
18-
"@nangohq/types": "0.69.2"
18+
"@nangohq/types": "0.69.3"
1919
},
2020
"files": [
2121
"dist/**/*.js",

packages/nango-yaml/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nangohq/nango-yaml",
3-
"version": "0.69.2",
3+
"version": "0.69.3",
44
"type": "module",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -17,7 +17,7 @@
1717
"ms": "3.0.0-canary.1"
1818
},
1919
"devDependencies": {
20-
"@nangohq/types": "0.69.2",
20+
"@nangohq/types": "0.69.3",
2121
"vitest": "3.2.4"
2222
},
2323
"files": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const NANGO_VERSION = '0.69.2';
1+
export const NANGO_VERSION = '0.69.3';

packages/node-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nangohq/node",
3-
"version": "0.69.2",
3+
"version": "0.69.3",
44
"description": "Nango's Node client.",
55
"type": "module",
66
"main": "dist/index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
2727
"dependencies": {
28-
"@nangohq/types": "0.69.2",
28+
"@nangohq/types": "0.69.3",
2929
"axios": "1.12.0"
3030
},
3131
"engines": {

packages/providers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nangohq/providers",
3-
"version": "0.69.2",
3+
"version": "0.69.3",
44
"description": "Nango's providers.yaml and getters",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -11,7 +11,7 @@
1111
"js-yaml": "4.1.0"
1212
},
1313
"devDependencies": {
14-
"@nangohq/types": "0.69.2",
14+
"@nangohq/types": "0.69.3",
1515
"vitest": "3.2.4"
1616
},
1717
"files": [

0 commit comments

Comments
 (0)