Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Staging #287

Merged
merged 28 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1b1de18
update deps
gkorland Dec 26, 2023
28cd8ec
update deps and add .env.local.template
gkorland Jan 9, 2024
0b6873f
Merge branch 'main' into staging
gkorland Jan 9, 2024
e439a89
fix Edeges set
gkorland Jan 10, 2024
7b4a1ee
Merge branch 'main' into staging
gkorland Jan 10, 2024
c7b346f
update deps
gkorland Feb 11, 2024
20a90b6
Update app/components/DirectedGraph.tsx
gkorland Feb 11, 2024
553a1d3
Merge branch 'main' into staging
gkorland Feb 11, 2024
3d07cdc
add global error file
gkorland Feb 11, 2024
d36f4d2
fix build error
gkorland Feb 11, 2024
cbe0be3
fix build error
gkorland Feb 11, 2024
4d91281
add chat
gkorland Feb 13, 2024
d4f2ada
use next Script
gkorland Feb 13, 2024
ade6e11
Merge branch 'main' into staging
gkorland Feb 13, 2024
84d1a81
remove hubspot pixel
gkorland Feb 13, 2024
95d35dd
Merge branch 'main' into staging
gkorland Feb 13, 2024
a7f9381
remove hubspot pixel
gkorland Feb 13, 2024
4b7f3a6
Bump @aws-sdk/client-route-53 from 3.511.0 to 3.540.0 (#276)
dependabot[bot] Mar 25, 2024
bbb7eaa
Bump lucide-react from 0.321.0 to 0.363.0 (#274)
dependabot[bot] Mar 25, 2024
169c10a
Bump @sentry/nextjs from 7.100.1 to 7.108.0 (#272)
dependabot[bot] Mar 25, 2024
2b5330b
Bump actions/checkout from 3 to 4 (#225)
dependabot[bot] Mar 25, 2024
5dcb04e
Bump actions/setup-node from 3 to 4 (#224)
dependabot[bot] Mar 25, 2024
10691e9
Bump actions/cache from 3 to 4 (#223)
dependabot[bot] Mar 25, 2024
7fff0b0
Bump @aws-sdk/client-cloudwatch from 3.511.0 to 3.540.0 (#275)
dependabot[bot] Mar 25, 2024
793166f
updat deps
gkorland Mar 25, 2024
6cd4d93
Fix falkordb typo in the code examples (#286)
gkorland Apr 1, 2024
bf1749d
fix build error Import 'Monitor' conflicts with local value (#288)
gkorland Apr 1, 2024
553661b
Merge branch 'main' into staging
gkorland Apr 1, 2024
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
target-branch: "staging"

- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Detect package manager
id: detect-package-manager
run: |
Expand All @@ -36,13 +36,13 @@ jobs:
exit 1
fi
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "16"
cache: ${{ steps.detect-package-manager.outputs.manager }}

- name: Restore cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.next/cache
Expand Down
3 changes: 0 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { NextAuthProvider } from "@/app/providers";
import GoogleAnalytics from "@/app/components/GoogleAnalytics";
import { Toaster } from "@/components/ui/toaster"
import Footer from '@/app/components/footer';
import Script from 'next/script';

const inter = Inter({ subsets: ['latin'] })

Expand All @@ -29,8 +28,6 @@ export default function RootLayout({
<NextAuthProvider>{children}</NextAuthProvider>
<Toaster />
<Footer />

<Script id="hs-script-loader" async defer src="//js-eu1.hs-scripts.com/144055056.js"></Script>
</body>
</html>
)
Expand Down
4 changes: 2 additions & 2 deletions app/sandbox/GettingStrartedExamples.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const PYTHON_EXAMPLE: CodeExample = {
code:
`import redis

r = redis.Redis(host='XYZ.falkordb.io', username='falkorbd', password='*****')
r = redis.Redis(host='XYZ.falkordb.io', username='falkordb', password='*****')

# uncomment the following lines if you want to use TLS
# r = redis.Redis(host='XYZ.falkordb.io', username='falkorbd', password='*****', ssl=True, ssl_ca_path='ca.crt')
# r = redis.Redis(host='XYZ.falkordb.io', username='falkordb', password='*****', ssl=True, ssl_ca_path='ca.crt')

graph = r.graph('movies')
graph.query("MATCH (n)-[:ACTED_IN]->(m:Movie {title:'Top Gun'}) RETURN n LIMIT 1")`,
Expand Down
Loading