Skip to content

Commit 980b84f

Browse files
authored
Merge branch 'main' into feat/rebrand
2 parents 9a62020 + ab9ace8 commit 980b84f

File tree

6 files changed

+33
-6
lines changed

6 files changed

+33
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Proposed changes
2+
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request.
3+
If it fixes a bug or resolves a feature request, be sure to link to that issue.
4+
5+
## Types of changes
6+
What types of changes does your code introduce to Lowcoder?
7+
_Put an `x` in the boxes that apply._
8+
9+
- [ ] Bugfix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] Documentation Update (if none of the other choices apply)
13+
14+
## Checklist
15+
You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help!
16+
This is simply a reminder of what we are going to look for before merging your code.
17+
_Put an `x` in the boxes that apply._
18+
19+
- [ ] Lint and unit tests pass locally with my changes
20+
- [ ] I have added tests that prove my fix is effective or that my feature works
21+
- [ ] I have added necessary documentation (if appropriate)
22+
- [ ] Any dependent changes have been merged and published in downstream modules
23+
24+
## Further comments
25+
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc.

.github/dependabot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ updates:
55
- package-ecosystem: "maven"
66
directory: "/server/api-service"
77
schedule:
8-
interval: "weekly"
8+
interval: "monthly"
99
- package-ecosystem: "npm"
1010
directory: "/server/node-service"
1111
schedule:
12-
interval: "weekly"
12+
interval: "monthly"
1313
- package-ecosystem: "npm"
1414
directory: "/client"
1515
schedule:
16-
interval: "weekly"
16+
interval: "monthly"
1717
- package-ecosystem: "docker"
1818
directory: "/deploy/docker"
1919
schedule:
20-
interval: "weekly"
20+
interval: "monthly"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/
22
logs/
3+
stacks/
34
client/.yarn/cache/*.zip
45
server/node-service/.yarn/cache/*.zip

docs/architecture.png

41.1 KB
Loading

server/node-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@aws-sdk/client-s3": "^3.332.0",
3636
"@aws-sdk/s3-request-presigner": "^3.332.0",
3737
"@google-cloud/bigquery": "^6.1.0",
38-
"@google-cloud/storage": "^6.9.3",
38+
"@google-cloud/storage": "^6.10.1",
3939
"@supabase/supabase-js": "^2.10.0",
4040
"@types/axios": "^0.14.0",
4141
"@types/express": "^4.17.14",

server/node-service/yarn.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2017,6 +2017,7 @@ __metadata:
20172017
languageName: node
20182018
linkType: hard
20192019

2020+
20202021
"@google-cloud/storage@npm:^6.9.3, @google-cloud/storage@npm:^6.9.5":
20212022
version: 6.10.1
20222023
resolution: "@google-cloud/storage@npm:6.10.1"
@@ -8939,7 +8940,7 @@ __metadata:
89398940
"@aws-sdk/client-s3": ^3.332.0
89408941
"@aws-sdk/s3-request-presigner": ^3.332.0
89418942
"@google-cloud/bigquery": ^6.1.0
8942-
"@google-cloud/storage": ^6.9.3
8943+
"@google-cloud/storage": ^6.10.1
89438944
"@supabase/supabase-js": ^2.10.0
89448945
"@types/axios": ^0.14.0
89458946
"@types/express": ^4.17.14

0 commit comments

Comments
 (0)