Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(framework, novu): Release new versions #6731

Merged
merged 6 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/novu.iml

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

Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,13 @@ export class ExecuteBridgeRequest {
afterResponse:
command.afterResponse !== undefined ? [command.afterResponse] : [],
},
/*
* Reject self-signed and invalid certificates in Production environments but allow them in Development
* as it's common for developers to use self-signed certificates in local environments.
*/
rejectUnauthorized: environment.name.toLowerCase() === 'production',
https: {
/*
* Reject self-signed and invalid certificates in Production environments but allow them in Development
* as it's common for developers to use self-signed certificates in local environments.
*/
rejectUnauthorized: environment.name.toLowerCase() === 'production',
},
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes this error:
image

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, I never saw that.

};

const request = [PostActionEnum.EXECUTE, PostActionEnum.PREVIEW].includes(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const buildBridgeEndpointUrl = (

/*
* Creates a bridge subdomain based on the apiKey provided. This function is used in several
* places, including packages/cli/src/commands/init/templates/index.ts when generating the
* places, including packages/novu/src/commands/init/templates/index.ts when generating the
* subdomain in the bridge application. Developers should take care to keep changes
* in sync.
*/
Expand Down
4 changes: 2 additions & 2 deletions novu.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"path": "libs/novui",
},
{
"name": "📦 @novu/cli",
"path": "packages/cli",
"name": "📦 novu",
"path": "packages/novu",
},
{
"name": "📦 @novu/client",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novu/framework",
"version": "2.2.0",
"version": "2.3.0",
"description": "The Code-First Notifications Workflow SDK.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/cli/package.json → packages/novu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "novu",
"version": "2.0.1",
"version": "2.1.0",
"description": "Novu CLI. Run Novu Studio and sync workflows with Novu Cloud",
"main": "src/index.js",
"publishConfig": {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading
Loading