Skip to content

Commit a03dd47

Browse files
committed
Merge branch 'main' into dependabot/npm_and_yarn/services/libs/common_services/jsonwebtoken-9.0.0
2 parents ba834b4 + 81350be commit a03dd47

1,103 files changed

Lines changed: 41756 additions & 37340 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/pr-title-jira-key-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PR Title - Jira Key Validation
22

33
on:
44
pull_request:
5-
types: [opened, edited, reopened, synchronize]
5+
types: [opened, edited, reopened]
66

77
jobs:
88
validate-jira-key-in-pr-title:

.github/workflows/tinybird-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Get changed files
3434
id: files
35-
uses: tj-actions/changed-files@v42
35+
uses: tj-actions/changed-files@v46
3636
with:
3737
files: |
3838
**/*.{datasource,incl,pipe}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ services/libs/tinybird/.diff_tmp
198198

199199
# claude code rules
200200
CLAUDE.md
201+
.claude
201202

202203
# git integration test repositories & output
203204
services/apps/git_integration/src/test/repos/
204-
services/apps/git_integration/src/test/outputs/custom/
205+
services/apps/git_integration/src/test/outputs/custom/

backend/.env.dist.local

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,7 @@ CROWD_GITHUB_IS_SNOWFLAKE_ENABLED=false
158158

159159
# Tinybird
160160
CROWD_TINYBIRD_BASE_URL=http://localhost:7181/
161+
162+
# Auth0
163+
CROWD_AUTH0_ISSUER_BASE_URL=
164+
CROWD_AUTH0_AUDIENCE=

backend/.eslintrc.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ module.exports = {
1212
'prefer-destructuring': ['error', { object: false, array: false }],
1313
'no-param-reassign': 0,
1414
'no-underscore-dangle': 0,
15+
'no-unused-vars': [
16+
'error',
17+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
18+
],
1519
'@typescript-eslint/naming-convention': [
1620
'error',
1721
{
@@ -46,6 +50,14 @@ module.exports = {
4650
'prefer-destructuring': ['error', { object: false, array: false }],
4751
'no-param-reassign': 0,
4852
'no-underscore-dangle': 0,
53+
'@typescript-eslint/no-unused-vars': [
54+
'error',
55+
{
56+
argsIgnorePattern: '^_',
57+
varsIgnorePattern: '^_',
58+
destructuredArrayIgnorePattern: '^_',
59+
},
60+
],
4961
'@typescript-eslint/naming-convention': [
5062
'error',
5163
{

backend/config/custom-environment-variables.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@
8484
"appId": "CROWD_SLACK_APP_ID",
8585
"appToken": "CROWD_SLACK_APP_TOKEN"
8686
},
87-
"slackNotifier": {
88-
"clientId": "CROWD_SLACK_NOTIFIER_CLIENT_ID",
89-
"clientSecret": "CROWD_SLACK_NOTIFIER_CLIENT_SECRET"
90-
},
9187
"google": {
9288
"clientId": "CROWD_GOOGLE_CLIENT_ID",
9389
"clientSecret": "CROWD_GOOGLE_CLIENT_SECRET",
@@ -160,7 +156,9 @@
160156
},
161157
"auth0": {
162158
"clientId": "CROWD_AUTH0_CLIENT_ID",
163-
"jwks": "CROWD_AUTH0_JWKS"
159+
"jwks": "CROWD_AUTH0_JWKS",
160+
"issuerBaseURL": "CROWD_AUTH0_ISSUER_BASE_URL",
161+
"audience": "CROWD_AUTH0_AUDIENCE"
164162
},
165163
"sso": {
166164
"crowdTenantId": "CROWD_SSO_CROWD_TENANT_ID",

backend/config/default.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"slack": {
2727
"maxRetrospectInSeconds": 3600
2828
},
29-
"slackNotifier": {},
3029
"google": {},
3130
"discord": {
3231
"maxRetrospectInSeconds": 3600
@@ -53,5 +52,6 @@
5352
"gitlab": {},
5453
"jiraIssueReporter": {},
5554
"snowflake": {},
56-
"nango": {}
55+
"nango": {},
56+
"linuxFoundation": {}
5757
}

backend/config/production.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
},
99
"slack": {
1010
"maxRetrospectInSeconds": 86400
11+
},
12+
"linuxFoundation": {
13+
"collectionId": "1606ad11-c96d-4177-8147-8f990b76b35d"
1114
}
1215
}

backend/config/staging.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
{}
1+
{
2+
"linuxFoundation": {
3+
"collectionId": "5ffc867e-067a-4018-82ca-dbbade2c95f3"
4+
}
5+
}

backend/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"@crowd/opensearch": "workspace:*",
6161
"@crowd/queue": "workspace:*",
6262
"@crowd/redis": "workspace:*",
63+
"@crowd/slack": "workspace:*",
6364
"@crowd/snowflake": "workspace:*",
6465
"@crowd/telemetry": "workspace:*",
6566
"@crowd/temporal": "workspace:*",
@@ -100,6 +101,7 @@
100101
"emoji-dictionary": "^1.0.11",
101102
"erlpack": "^0.1.4",
102103
"express": "4.17.1",
104+
"express-oauth2-jwt-bearer": "^1.7.4",
103105
"express-rate-limit": "6.5.1",
104106
"fast-levenshtein": "^3.0.0",
105107
"formidable-serverless": "1.1.1",

0 commit comments

Comments
 (0)