Skip to content

Commit ac2ca59

Browse files
committed
v1.0.2
1 parent c0141aa commit ac2ca59

File tree

8 files changed

+25
-7
lines changed

8 files changed

+25
-7
lines changed

packages/cli/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# mailing
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- - Prevent live reload in production build
8+
- include from option when forcing in intercept preview
9+
- Decode URI component when reading URL path
10+
- Updated dependencies
11+
12+
313
## 1.0.1
414

515
### Patch Changes

packages/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mailing",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"main": "dist/mailing.cjs.js",
55
"license": "MIT",
66
"homepage": "https://github.com/sofn-xyz/mailing#readme",
@@ -77,7 +77,7 @@
7777
"html-minifier-terser": "^7.0.0",
7878
"iron-session": "^6.2.1",
7979
"lodash": "^4.17.21",
80-
"mailing-core": "^1.0.1",
80+
"mailing-core": "^1.0.2",
8181
"mjml": "^4.12.0",
8282
"node-fetch": "^2.6.7",
8383
"node-html-parser": "^6.1.1",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const MAILING_VERSION = process.env.MAILING_VERSION;
1+
export const MAILING_VERSION = "1.0.1";
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const POSTHOG_API_KEY = process.env.POSTHOG_API_KEY;
1+
export const POSTHOG_API_KEY = "phc_7ZFYSlHCG9Fo6a7do1BC4tUDx1DzuceaymIxZAfPUVg";

packages/core/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# mailing-core
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- - Prevent live reload in production build
8+
- include from option when forcing in intercept preview
9+
- Decode URI component when reading URL path
10+
311
## 1.0.1
412

513
### Patch Changes

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mailing-core",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"main": "dist/mailing-core.cjs.js",
55
"license": "MIT",
66
"description": "Fun email development environment (core library only)",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const MAILING_CORE_VERSION = process.env.MAILING_CORE_VERSION;
1+
export const MAILING_CORE_VERSION = "1.0.1";

packages/core/src/util/postHog/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { PostHog } from "posthog-node";
22
import { debug } from "../serverLogger";
33

4-
const POSTHOG_API_KEY = process.env.POSTHOG_API_KEY;
4+
const POSTHOG_API_KEY = "phc_7ZFYSlHCG9Fo6a7do1BC4tUDx1DzuceaymIxZAfPUVg";
55

66
let client: PostHog | undefined;
77

0 commit comments

Comments
 (0)