# Changelogs

Source: https://developer.nylas.com/docs/changelogs/

<style>{`
/* ── Changelog timeline styles ─────────────────────────────────── */

/* Filter chips */
.cl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cl-chip {
  padding: 0.3125rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border, 0 0% 89.8%));
  background: transparent;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  font-family: var(--ref-font-sans, var(--sl-font, sans-serif));
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cl-chip:hover {
  color: hsl(var(--foreground, 0 0% 3.9%));
  border-color: hsl(var(--muted-foreground, 0 0% 45.1%));
}

.cl-chip-active {
  background: hsl(var(--foreground, 0 0% 3.9%));
  color: hsl(var(--background, 0 0% 100%));
  border-color: hsl(var(--foreground, 0 0% 3.9%));
}

.cl-chip-active:hover {
  opacity: 0.9;
}

/* Timeline */
.cl-timeline { position: relative; }

/* Date group — timeline dot + connecting line */
.cl-date-group {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 1.75rem;
  border-left: 1px solid hsl(var(--border, 0 0% 89.8%));
}

.cl-date-group:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.cl-date-group::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--border, 0 0% 89.8%));
  border: 2px solid hsl(var(--background, 0 0% 100%));
  box-shadow: 0 0 0 1px hsl(var(--border, 0 0% 89.8%));
  transition: background 0.15s, box-shadow 0.15s;
}

.cl-date-group:first-child::before {
  background: hsl(var(--foreground, 0 0% 3.9%));
  box-shadow: 0 0 0 1px hsl(var(--foreground, 0 0% 3.9%));
}

.cl-date-group:hover::before {
  background: hsl(var(--foreground, 0 0% 3.9%));
  box-shadow: 0 0 0 1px hsl(var(--foreground, 0 0% 3.9%));
}

/* Entries within a date group */
.cl-date-entries .cl-entry + .cl-entry {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border, 0 0% 89.8%) / 0.6);
}

/* Auto-hide empty date groups */
.cl-date-group:not(:has(.cl-entry:not([data-cl-hidden]):not([data-cl-page-hidden]))) {
  display: none;
}

/* Date */
.cl-date {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Hero image — theme-aware */
.cl-hero {
  display: block;
  margin-bottom: 0.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: opacity 0.15s;
}

.cl-hero:hover {
  opacity: 0.9;
}

.cl-hero img {
  width: 100%;
  height: auto;
  margin: 0 !important;
  border-radius: 0.375rem !important;
  box-shadow: none !important;
  border: 1px solid hsl(var(--border, 0 0% 89.8%));
}

:root[data-theme="dark"] .cl-hero img {
  border-color: hsl(220 10% 18%);
}

/* Theme-aware hero images handled by <picture> + JS override */

/* Title row */
.cl-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.375rem;
}

.cl-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: hsl(var(--foreground, 0 0% 3.9%));
  text-decoration: none;
  transition: color 0.1s;
}

.cl-title:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cl-badges {
  display: inline-flex;
  gap: 0.375rem;
}

/* Summary */
.cl-summary {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  margin: 0;
}

/* Empty state */
.cl-empty {
  text-align: center;
  padding: 2rem 0;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  font-size: 0.9375rem;
}

/* Hide filtered entries */
.cl-entry[data-cl-hidden] { display: none; }

/* Progressive loading — initially hidden entries */
.cl-entry[data-cl-page-hidden] { display: none; }

/* ── Pre-filter skeleton (prevents FOUC with ?filter= param) ── */
[data-cl-prefilter] .cl-timeline { display: none; }
.cl-skeleton { display: none; }
[data-cl-prefilter] .cl-skeleton { display: block; }

.cl-skeleton-entry {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: 1.75rem;
  border-left: 1px solid hsl(var(--border, 0 0% 89.8%));
}
.cl-skeleton-entry::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--border, 0 0% 89.8%));
  border: 2px solid hsl(var(--background, 0 0% 100%));
  box-shadow: 0 0 0 1px hsl(var(--border, 0 0% 89.8%));
}
.cl-skeleton-entry:last-child { border-left-color: transparent; }
.cl-skeleton-line {
  border-radius: 0.25rem;
  background: hsl(var(--border, 0 0% 89.8%));
  animation: cl-pulse 1.5s ease-in-out infinite;
}
.cl-skeleton-date { width: 7rem; height: 0.75rem; margin-bottom: 0.5rem; }
.cl-skeleton-title { width: 14rem; height: 1rem; margin-bottom: 0.375rem; }
.cl-skeleton-text { width: 22rem; height: 0.75rem; }
@keyframes cl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
:root[data-theme="dark"] .cl-skeleton-entry {
  border-left-color: hsl(220 10% 20%);
}
:root[data-theme="dark"] .cl-skeleton-entry::before {
  border-color: hsl(220 13% 8%);
  box-shadow: 0 0 0 1px hsl(220 10% 25%);
  background: hsl(220 10% 25%);
}
:root[data-theme="dark"] .cl-skeleton-line {
  background: hsl(220 10% 20%);
}

/* Highlight linked date group via ?date= */
.cl-date-group.cl-highlight {
  animation: cl-flash 1.5s ease-out;
}

@keyframes cl-flash {
  0%, 20% { background: hsl(var(--muted, 0 0% 96.1%)); border-radius: 0.375rem; }
  100% { background: transparent; }
}

/* Load more button */
.cl-load-more {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.625rem;
  border: 1px solid hsl(var(--border, 0 0% 89.8%));
  border-radius: 0.375rem;
  background: transparent;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  font-family: var(--ref-font-sans, var(--sl-font, sans-serif));
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cl-load-more:hover {
  background: hsl(var(--muted, 0 0% 96.1%));
  color: hsl(var(--foreground, 0 0% 3.9%));
}

/* Dark mode adjustments */
:root[data-theme="dark"] .cl-chip {
  border-color: hsl(220 10% 25%);
  color: hsl(215 12% 65%);
}

:root[data-theme="dark"] .cl-chip:hover {
  color: hsl(210 15% 90%);
  border-color: hsl(215 12% 40%);
  background: hsl(220 12% 16%);
}

:root[data-theme="dark"] .cl-chip-active {
  background: hsl(210 15% 90%);
  color: hsl(220 13% 10%);
  border-color: hsl(210 15% 90%);
}

:root[data-theme="dark"] .cl-chip-active:hover {
  background: hsl(210 15% 80%);
}

:root[data-theme="dark"] .cl-date-group {
  border-left-color: hsl(220 10% 20%);
}

:root[data-theme="dark"] .cl-date-group::before {
  border-color: hsl(220 13% 8%);
  box-shadow: 0 0 0 1px hsl(220 10% 25%);
  background: hsl(220 10% 25%);
}

:root[data-theme="dark"] .cl-date-group:first-child::before,
:root[data-theme="dark"] .cl-date-group:hover::before {
  background: hsl(210 15% 90%);
  box-shadow: 0 0 0 1px hsl(210 15% 90%);
}

:root[data-theme="dark"] .cl-date-entries .cl-entry + .cl-entry {
  border-top-color: hsl(220 10% 20%);
}

/* RSS link (inline) */
.cl-rss {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  margin-bottom: 1.5rem;
}
.cl-rss a {
  color: hsl(var(--muted-foreground, 0 0% 45.1%));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cl-rss a:hover {
  color: hsl(var(--foreground, 0 0% 3.9%));
}
`}</style>

<div class="cl-rss">
   <a href="/atom-changelogs.xml">Subscribe via RSS</a>
</div>


<p style="margin-top: 1rem;">
  <a href="/docs/changelogs/all/">See all changelogs &rarr;</a>
</p>

