fix: rss feed datetime format for RFC822 (#30289)
* fix: rss feed datetime format for RFC822 * gen rss --------- Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com>
This commit is contained in:
@@ -25,7 +25,7 @@ const generateRssItem = (post: any): string => {
|
||||
const formattedDate = dayjs(post.date)
|
||||
.utcOffset(0, true)
|
||||
.startOf('day')
|
||||
.format('ddd, DD MMM YYYY HH:mm:ss [-7 GMT]')
|
||||
.format('ddd, DD MMM YYYY HH:mm:ss [-0700]')
|
||||
|
||||
return `<item>
|
||||
<guid>https://supabase.com${encodedPath}</guid>
|
||||
@@ -45,7 +45,7 @@ export const generateRss = (posts: any[], authorID?: string): string => {
|
||||
const formattedDate = dayjs(posts[0].date)
|
||||
.utcOffset(0, true)
|
||||
.startOf('day')
|
||||
.format('ddd, DD MMM YYYY HH:mm:ss [-7 GMT]')
|
||||
.format('ddd, DD MMM YYYY HH:mm:ss [-0700]')
|
||||
|
||||
if (authorID) {
|
||||
return `
|
||||
|
||||
@@ -5,35 +5,35 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Angelico de los Reyes at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-angelico_de_los_reyes-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-point-in-time-recovery</guid>
|
||||
<title>Point in Time Recovery is now available for Pro projects</title>
|
||||
<link>https://supabase.com/blog/postgres-point-in-time-recovery</link>
|
||||
<description>We're making PITR available for more projects, with a new Dashboard UI that makes it simple to use.</description>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/continuous-postgresql-backup-walg</guid>
|
||||
<title>Continuous PostgreSQL Backups using WAL-G</title>
|
||||
<link>https://supabase.com/blog/continuous-postgresql-backup-walg</link>
|
||||
<description>Have you ever wanted to restore your database's state to a particular moment in time? This post explains how, using WAL-G.</description>
|
||||
<pubDate>Sun, 02 Aug 2020 00:00:00 GMT</pubDate>
|
||||
<pubDate>Sun, 02 Aug 2020 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgresql-templates</guid>
|
||||
<title>What are PostgreSQL Templates?</title>
|
||||
<link>https://supabase.com/blog/postgresql-templates</link>
|
||||
<description>What are PostgreSQL templates and what are they used for?</description>
|
||||
<pubDate>Thu, 09 Jul 2020 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 09 Jul 2020 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgresql-physical-logical-backups</guid>
|
||||
<title>Physical vs Logical Backups in PostgreSQL</title>
|
||||
<link>https://supabase.com/blog/postgresql-physical-logical-backups</link>
|
||||
<description>What are physical and logical backups in Postgres?</description>
|
||||
<pubDate>Tue, 07 Jul 2020 00:00:00 GMT</pubDate>
|
||||
<pubDate>Tue, 07 Jul 2020 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Ant Wilson at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Sat, 27 Feb 2021 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Sat, 27 Feb 2021 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-ant_wilson-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/cracking-postgres-interview</guid>
|
||||
<title>Cracking PostgreSQL Interview Questions</title>
|
||||
<link>https://supabase.com/blog/cracking-postgres-interview</link>
|
||||
<description>Understand the top PostgreSQL Interview Questions</description>
|
||||
<pubDate>Sat, 27 Feb 2021 00:00:00 GMT</pubDate>
|
||||
<pubDate>Sat, 27 Feb 2021 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Bo Lu at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Thu, 14 Dec 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 14 Dec 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-bo_lu-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/supabase-wrappers-v02</guid>
|
||||
<title>Supabase Wrappers v0.2: Query Pushdown & Remote Subqueries</title>
|
||||
<link>https://supabase.com/blog/supabase-wrappers-v02</link>
|
||||
<description>Supabase Wrappers v0.2 brings more Wrappers, query pushdown, remote subquery, and more</description>
|
||||
<pubDate>Thu, 14 Dec 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 14 Dec 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,21 +5,21 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Mark Burggraf at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Thu, 24 Nov 2022 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 24 Nov 2022 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-burggraf-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/sql-or-nosql-both-with-postgresql</guid>
|
||||
<title>SQL or NoSQL? Why not use both (with PostgreSQL)?</title>
|
||||
<link>https://supabase.com/blog/sql-or-nosql-both-with-postgresql</link>
|
||||
<description>How to turn Postgres into an easy-to-use NoSQL database that retains all the power of SQL</description>
|
||||
<pubDate>Thu, 24 Nov 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 24 Nov 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-wasm</guid>
|
||||
<title>Postgres WASM by Snaplet and Supabase</title>
|
||||
<link>https://supabase.com/blog/postgres-wasm</link>
|
||||
<description>We're open sourcing postgres-wasm, a PostgresQL server that runs inside a browser, with our friends at Snaplet.</description>
|
||||
<pubDate>Mon, 03 Oct 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Mon, 03 Oct 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,21 +5,21 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Egor Romanov at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Thu, 03 Aug 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 03 Aug 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-egor_romanov-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</guid>
|
||||
<title>pgvector: Fewer dimensions are better</title>
|
||||
<link>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</link>
|
||||
<description>Increase performance in pgvector by using embedding vectors with fewer dimensions</description>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pgvector-performance</guid>
|
||||
<title>pgvector 0.4.0 performance</title>
|
||||
<link>https://supabase.com/blog/pgvector-performance</link>
|
||||
<description>There's been a lot of talk about pgvector performance lately, so we took some datasets and pushed pgvector to the limits to find out its strengths and limitations.</description>
|
||||
<pubDate>Thu, 13 Jul 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 13 Jul 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Filipe Cabaço at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Tue, 09 Jan 2024 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Tue, 09 Jan 2024 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-filipe-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/elixir-clustering-using-postgres</guid>
|
||||
<title>Elixir clustering using Postgres</title>
|
||||
<link>https://supabase.com/blog/elixir-clustering-using-postgres</link>
|
||||
<description>Learn about our approach to connecting multiple nodes in Elixir using Postgres</description>
|
||||
<pubDate>Tue, 09 Jan 2024 00:00:00 GMT</pubDate>
|
||||
<pubDate>Tue, 09 Jan 2024 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,28 +5,28 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Greg Richardson at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Wed, 06 Sep 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Wed, 06 Sep 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-gregnr-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/increase-performance-pgvector-hnsw</guid>
|
||||
<title>pgvector v0.5.0: Faster semantic search with HNSW indexes</title>
|
||||
<link>https://supabase.com/blog/increase-performance-pgvector-hnsw</link>
|
||||
<description>Increase performance in pgvector using HNSW indexes</description>
|
||||
<pubDate>Wed, 06 Sep 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Wed, 06 Sep 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</guid>
|
||||
<title>pgvector: Fewer dimensions are better</title>
|
||||
<link>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</link>
|
||||
<description>Increase performance in pgvector by using embedding vectors with fewer dimensions</description>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/openai-embeddings-postgres-vector</guid>
|
||||
<title>Storing OpenAI embeddings in Postgres with pgvector</title>
|
||||
<link>https://supabase.com/blog/openai-embeddings-postgres-vector</link>
|
||||
<description>An example of how to build an AI-powered search engine using OpenAI's embeddings and PostgreSQL.</description>
|
||||
<pubDate>Mon, 06 Feb 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Mon, 06 Feb 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Michel Pelletier at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-michel-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/vault-now-in-beta</guid>
|
||||
<title>Supabase Vault is now in Beta</title>
|
||||
<link>https://supabase.com/blog/vault-now-in-beta</link>
|
||||
<description>A Postgres extension to store encrypted secrets and encrypt data.</description>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,63 +5,63 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Oliver Rice at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Wed, 13 Dec 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Wed, 13 Dec 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-oli_rice-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgrest-12</guid>
|
||||
<title>PostgREST 12</title>
|
||||
<link>https://supabase.com/blog/postgrest-12</link>
|
||||
<description>PostgREST 12 is out and we take a look at some of the major new features like JWT Caching and Aggregate Functions</description>
|
||||
<pubDate>Wed, 13 Dec 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Wed, 13 Dec 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pg-graphql-postgres-functions</guid>
|
||||
<title>pg_graphql: Postgres functions now supported</title>
|
||||
<link>https://supabase.com/blog/pg-graphql-postgres-functions</link>
|
||||
<description>pg_graphql now supports the most requested feature: Postgres functions a.k.a. User Defined Functions (UDFs)</description>
|
||||
<pubDate>Tue, 12 Dec 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Tue, 12 Dec 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</guid>
|
||||
<title>pgvector: Fewer dimensions are better</title>
|
||||
<link>https://supabase.com/blog/fewer-dimensions-are-better-pgvector</link>
|
||||
<description>Increase performance in pgvector by using embedding vectors with fewer dimensions</description>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 03 Aug 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/whats-new-in-pg-graphql-v1-2</guid>
|
||||
<title>What's New in pg_graphql v1.2</title>
|
||||
<link>https://supabase.com/blog/whats-new-in-pg-graphql-v1-2</link>
|
||||
<description>New Features in the v1.2 release of pg_graphql</description>
|
||||
<pubDate>Fri, 21 Apr 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 21 Apr 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/type-constraints-in-65-lines-of-sql</guid>
|
||||
<title>Type Constraints in 65 lines of SQL</title>
|
||||
<link>https://supabase.com/blog/type-constraints-in-65-lines-of-sql</link>
|
||||
<description>Creating validated data types in Postgres</description>
|
||||
<pubDate>Fri, 17 Feb 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 17 Feb 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pg-graphql-v1</guid>
|
||||
<title>pg_graphql v1.0</title>
|
||||
<link>https://supabase.com/blog/pg-graphql-v1</link>
|
||||
<description>Announcing the v1.0 release of pg_graphql</description>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pg-jsonschema-a-postgres-extension-for-json-validation</guid>
|
||||
<title>pg_jsonschema: JSON Schema support for Postgres</title>
|
||||
<link>https://supabase.com/blog/pg-jsonschema-a-postgres-extension-for-json-validation</link>
|
||||
<description>Today we're releasing pg_jsonschema, a Postgres extension for JSON validation.</description>
|
||||
<pubDate>Fri, 19 Aug 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 19 Aug 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-audit</guid>
|
||||
<title>Postgres Auditing in 150 lines of SQL</title>
|
||||
<link>https://supabase.com/blog/postgres-audit</link>
|
||||
<description>PostgreSQL has a robust set of features which we can leverage to create a generic auditing solution in 150 lines of SQL.</description>
|
||||
<pubDate>Tue, 08 Mar 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Tue, 08 Mar 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,42 +5,42 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Paul Copplestone at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Mon, 01 May 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Mon, 01 May 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-paul_copplestone-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-pluggable-strorage</guid>
|
||||
<title>Next steps for Postgres pluggable storage</title>
|
||||
<link>https://supabase.com/blog/postgres-pluggable-strorage</link>
|
||||
<description>Exploring history of Postgres pluggable storage and the possibility of landing it in the Postgres core.</description>
|
||||
<pubDate>Mon, 01 May 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Mon, 01 May 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-crdt</guid>
|
||||
<title>pg_crdt - an experimental CRDT extension for Postgres</title>
|
||||
<link>https://supabase.com/blog/postgres-crdt</link>
|
||||
<description>Embedding Yjs and Automerge into Postgres for collaborative applications.</description>
|
||||
<pubDate>Sat, 10 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Sat, 10 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/partial-postgresql-data-dumps-with-rls</guid>
|
||||
<title>Partial data dumps using Postgres Row Level Security</title>
|
||||
<link>https://supabase.com/blog/partial-postgresql-data-dumps-with-rls</link>
|
||||
<description>Using RLS to create seed files for local PostgreSQL testing.</description>
|
||||
<pubDate>Tue, 28 Jun 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Tue, 28 Jun 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-as-a-cron-server</guid>
|
||||
<title>Postgres as a CRON Server</title>
|
||||
<link>https://supabase.com/blog/postgres-as-a-cron-server</link>
|
||||
<description>Running repetitive tasks with your Postgres database.</description>
|
||||
<pubDate>Fri, 05 Mar 2021 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 05 Mar 2021 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgresql-views</guid>
|
||||
<title>Postgres Views</title>
|
||||
<link>https://supabase.com/blog/postgresql-views</link>
|
||||
<description>Creating and using a view in PostgreSQL.</description>
|
||||
<pubDate>Wed, 18 Nov 2020 00:00:00 GMT</pubDate>
|
||||
<pubDate>Wed, 18 Nov 2020 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,42 +5,42 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Pavel Borisov at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Thu, 02 May 2024 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 02 May 2024 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-pavel-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pgvector-0-7-0</guid>
|
||||
<title>What's new in pgvector v0.7.0</title>
|
||||
<link>https://supabase.com/blog/pgvector-0-7-0</link>
|
||||
<description>Exploring new features in pgvector v0.7.0</description>
|
||||
<pubDate>Thu, 02 May 2024 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 02 May 2024 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-bloat</guid>
|
||||
<title>Postgres Bloat Minimization</title>
|
||||
<link>https://supabase.com/blog/postgres-bloat</link>
|
||||
<description>Understanding and minimizing Postgres table bloat</description>
|
||||
<pubDate>Fri, 26 Apr 2024 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 26 Apr 2024 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/pgvector-performance</guid>
|
||||
<title>pgvector 0.4.0 performance</title>
|
||||
<link>https://supabase.com/blog/pgvector-performance</link>
|
||||
<description>There's been a lot of talk about pgvector performance lately, so we took some datasets and pushed pgvector to the limits to find out its strengths and limitations.</description>
|
||||
<pubDate>Thu, 13 Jul 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 13 Jul 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/new-in-postgres-15</guid>
|
||||
<title>What's new in Postgres 15?</title>
|
||||
<link>https://supabase.com/blog/new-in-postgres-15</link>
|
||||
<description>Describes the release of Postgres 15, new features and reasons to use it</description>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgresql-commitfest</guid>
|
||||
<title>What is PostgreSQL commitfest and how to contribute</title>
|
||||
<link>https://supabase.com/blog/postgresql-commitfest</link>
|
||||
<description>A time-tested method for contributing to the core Postgres code</description>
|
||||
<pubDate>Thu, 27 Oct 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 27 Oct 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Philipp Steinrötter at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Fri, 08 Dec 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 08 Dec 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-philipp-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-language-server-implementing-parser</guid>
|
||||
<title>Postgres Language Server: implementing the Parser</title>
|
||||
<link>https://supabase.com/blog/postgres-language-server-implementing-parser</link>
|
||||
<description>A detailed analysis of our iterations to implement a Parser for Postgres</description>
|
||||
<pubDate>Fri, 08 Dec 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 08 Dec 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,21 +5,21 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Raminder Singh at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Thu, 11 Apr 2024 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Thu, 11 Apr 2024 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-raminder_singh-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-roles-and-privileges</guid>
|
||||
<title>Postgres Roles and Privileges</title>
|
||||
<link>https://supabase.com/blog/postgres-roles-and-privileges</link>
|
||||
<description>A guide to Postgres roles and privileges</description>
|
||||
<pubDate>Thu, 11 Apr 2024 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 11 Apr 2024 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/how-pg-graphql-works</guid>
|
||||
<title>How pg_graphql works</title>
|
||||
<link>https://supabase.com/blog/how-pg-graphql-works</link>
|
||||
<description>An insight into the internals of GraphQL in Postgres using pg_graphql, and how you can contribute.</description>
|
||||
<pubDate>Wed, 24 Jan 2024 00:00:00 GMT</pubDate>
|
||||
<pubDate>Wed, 24 Jan 2024 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Stanislav Muzhyk at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Wed, 13 Dec 2023 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Wed, 13 Dec 2023 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-stas-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/supavisor-postgres-connection-pooler</guid>
|
||||
<title>Supavisor 1.0: a scalable connection pooler for Postgres</title>
|
||||
<link>https://supabase.com/blog/supavisor-postgres-connection-pooler</link>
|
||||
<description>Supavisor is now used across all projects, providing a scalable and cloud-native Postgres connection pooler that can handle millions of connections</description>
|
||||
<pubDate>Wed, 13 Dec 2023 00:00:00 GMT</pubDate>
|
||||
<pubDate>Wed, 13 Dec 2023 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,21 +5,21 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Steve Chavez at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 16 Dec 2022 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-steve_chavez-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgrest-11-prerelease</guid>
|
||||
<title>PostgREST 11 pre-release</title>
|
||||
<link>https://supabase.com/blog/postgrest-11-prerelease</link>
|
||||
<description>Describes new features of PostgREST 11 pre-release</description>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 16 Dec 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/roles-postgres-hooks</guid>
|
||||
<title>Protecting reserved roles with PostgreSQL Hooks</title>
|
||||
<link>https://supabase.com/blog/roles-postgres-hooks</link>
|
||||
<description>Using Postgres Hooks to protect functionality in your Postgres database.</description>
|
||||
<pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 02 Jul 2021 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
@@ -5,28 +5,28 @@
|
||||
<link>https://supabase.com/blog</link>
|
||||
<description>Latest Postgres news from Victor at Supabase</description>
|
||||
<language>en</language>
|
||||
<lastBuildDate>Fri, 14 Oct 2022 00:00:00 GMT</lastBuildDate>
|
||||
<lastBuildDate>Fri, 14 Oct 2022 00:00:00 -0700</lastBuildDate>
|
||||
<atom:link href="https://supabase.com/planetpg-victor-rss.xml" rel="self" type="application/rss+xml"/>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/postgres-full-text-search-vs-the-rest</guid>
|
||||
<title>Postgres Full Text Search vs the rest</title>
|
||||
<link>https://supabase.com/blog/postgres-full-text-search-vs-the-rest</link>
|
||||
<description>Comparing one of the most popular Postgres features against alternatives</description>
|
||||
<pubDate>Fri, 14 Oct 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Fri, 14 Oct 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/choosing-a-postgres-primary-key</guid>
|
||||
<title>Choosing a Postgres Primary Key</title>
|
||||
<link>https://supabase.com/blog/choosing-a-postgres-primary-key</link>
|
||||
<description>Turns out the question of which identifier to use as a Primary Key is complicated -- we're going to dive into some of the complexity and inherent trade-offs, and figure things out</description>
|
||||
<pubDate>Thu, 08 Sep 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Thu, 08 Sep 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<guid>https://supabase.com/blog/seen-by-in-postgresql</guid>
|
||||
<title>Implementing "seen by" functionality with Postgres</title>
|
||||
<link>https://supabase.com/blog/seen-by-in-postgresql</link>
|
||||
<description>Different approaches for tracking visitor counts with PostgreSQL.</description>
|
||||
<pubDate>Mon, 18 Jul 2022 00:00:00 GMT</pubDate>
|
||||
<pubDate>Mon, 18 Jul 2022 00:00:00 -0700</pubDate>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user