Skip to content

Commit

Permalink
Merge pull request #190 from thegalactiks/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
emmanuelgautier authored Mar 17, 2024
2 parents dc70d8d + 6114317 commit ae5733b
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 15 deletions.
8 changes: 0 additions & 8 deletions .changeset/yellow-snails-help.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/adapters/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @galactiks/astro-integration

## 0.3.9

### Patch Changes

- [#189](https://github.com/thegalactiks/explorer/pull/189) [`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8) Thanks [@renovate](https://github.com/apps/renovate)! - update dependencies

- Updated dependencies [[`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8)]:
- @galactiks/explorer@0.3.7
- @galactiks/sitemap@0.1.3

## 0.3.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/adapters/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/astro-integration",
"version": "0.3.8",
"version": "0.3.9",
"description": "Galactiks Astro integration",
"author": "thegalactiks",
"type": "module",
Expand Down Expand Up @@ -51,7 +51,7 @@
"@astrojs/partytown": "^2.0",
"@astrojs/react": "^3.0",
"@astrojs/rss": "~4.0",
"@galactiks/sitemap": "^0.1.2",
"@galactiks/sitemap": "^0.1.3",
"astro": "^4.0",
"astro-robots-txt": "~1.0"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/contentlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galactiks/contentlayer

## 0.2.5

### Patch Changes

- [#189](https://github.com/thegalactiks/explorer/pull/189) [`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8) Thanks [@renovate](https://github.com/apps/renovate)! - update dependencies

## 0.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contentlayer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/contentlayer",
"version": "0.2.4",
"version": "0.2.5",
"description": "Galactiks contentlayer configurations",
"author": "galactiks",
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @galactiks/explorer

## 0.3.7

### Patch Changes

- [#189](https://github.com/thegalactiks/explorer/pull/189) [`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8) Thanks [@renovate](https://github.com/apps/renovate)! - update dependencies

- Updated dependencies [[`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8)]:
- @galactiks/contentlayer@0.2.5

## 0.3.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/explorer",
"version": "0.3.6",
"version": "0.3.7",
"description": "Ensure Galactiks content model consistence, explore content built with ContentLayer and create dynamically missing pages and fields for SEO purposes",
"author": "thegalactiks",
"type": "module",
Expand Down
6 changes: 4 additions & 2 deletions packages/explorer/src/content/metadata/schemas/place.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import type { Place, PostalAddress, WithContext } from 'schema-dts';
import type { Place as ContentPlace } from '../../../types/index.js';

const getPostalAddress = (address: NonNullable<ContentPlace['address']>): PostalAddress => ({
const getPostalAddress = (
address: NonNullable<ContentPlace['address']>
): PostalAddress => ({
'@type': 'PostalAddress',
addressCountry: address.addressCountry,
addressLocality: address.addressLocality,
Expand All @@ -19,6 +21,6 @@ export const getPlace = (document: ContentPlace): WithContext<Place> => ({
telephone: document.telephone,
latitude: document.latitude,
longitude: document.longitude,
address: (document.address ? getPostalAddress(document.address) : undefined),
address: document.address ? getPostalAddress(document.address) : undefined,
url: document.url,
});
6 changes: 6 additions & 0 deletions packages/sitemap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galactiks/sitemap

## 0.1.3

### Patch Changes

- [#189](https://github.com/thegalactiks/explorer/pull/189) [`79b4f5d`](https://github.com/thegalactiks/explorer/commit/79b4f5d6975f8fb281f881fe390f0ae04775a4d8) Thanks [@renovate](https://github.com/apps/renovate)! - update dependencies

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sitemap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/sitemap",
"version": "0.1.2",
"version": "0.1.3",
"description": "A simple sitemap generator for Galactiks",
"author": "thegalactiks",
"type": "module",
Expand Down

0 comments on commit ae5733b

Please sign in to comment.