Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.14.4 #1137

Merged
merged 5 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .cz.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"commitizen": {
"name": "cz_customize",
"version": "3.14.3",
"version": "3.14.4",
"gpg_sign": true,
"tag_format": "$major.$minor.$patch$prerelease",
"version_type": "semver",
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/bd-fe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,14 @@ jobs:
- name: 🤖 Robots
if: ${{ inputs.env == 'prd' }}
run: |
robots=front/build/robots.txt
sed -i 's/^Disallow\: \/$/Allow\: \//' front/build/robots.txt
echo "" >>$robots
echo "" >>$robots
echo "User-agent: Googlebot" >>$robots
echo "Allow: /s/" >>$robots
echo "" >>$robots
echo "Sitemap: https://www.dgrebb.com/sitemap.xml" >>$robots

- name: ↕ Sync S3
uses: jakejarvis/s3-sync-action@master
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [3.14.4] - 2024-01-04

### 🐛 Bug Fixes

- ***(front)*** Adds sitemap.xml to robots.txt (#1120)
- ***(front)*** Moves disallow / rule to top of robots.txt

## [3.14.3] - 2024-01-01

### ♻️ Refactor
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions back/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion back/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cms.dgrebb.com",
"version": "3.14.3",
"version": "3.14.4",
"private": true,
"description": "cms.dgrebb.com",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions front/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion front/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dgrebb.com",
"version": "3.14.3",
"version": "3.14.4",
"private": true,
"scripts": {
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
Expand Down
2 changes: 1 addition & 1 deletion front/src/hooks.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { dev, building } from '$app/environment';

export function handleError({ error, event }) {
console.warn(`Error: ${error}`);
console.warn(`Event: ${event}`);
console.dir(event);

return {
message: 'Whoops!',
Expand Down
8 changes: 5 additions & 3 deletions front/static/robots.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
User-agent: *
Disallow: /
Disallow: /*.json$
Disallow: /*.js$
Disallow: /*.gz$
Disallow: /*.br$
Disallow: /fonts
Disallow: /s
Disallow: /
Disallow: /fonts/
Disallow: /s/
Disallow: /styles/
Disallow: /v/
Loading