Skip to content

Commit 04d52c2

Browse files
[Changesets] Create versioned packages for publishing (#115)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 34d50b6 commit 04d52c2

File tree

11 files changed

+41
-23
lines changed

11 files changed

+41
-23
lines changed

.changeset/fancy-lights-peel.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/lemon-ants-juggle.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pink-plants-do.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/integrations/astro/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @varlock/astro-integration
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#116](https://github.com/dmno-dev/varlock/pull/116) [`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5) Thanks [@theoephraim](https://github.com/theoephraim)! - - make Vite plugin work for SSR scenarios, injecting code and resolved env (in some cases)
8+
- detect Cloudflare Vite plugin
9+
- make compatible with React Router 7
10+
- simplify astro integration to rely on vite integration more
11+
- Updated dependencies [[`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5), [`86c02bf`](https://github.com/dmno-dev/varlock/commit/86c02bf7f5283c487c576e884699f94863b4773e)]:
12+
13+
314
## 0.0.3
415

516
### Patch Changes

packages/integrations/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/astro-integration",
33
"description": "Astro integration to use varlock for .env file loading - adds validation, type-safety, and extra security features",
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

packages/integrations/nextjs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @varlock/nextjs-integration
22

3+
## 0.0.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5), [`86c02bf`](https://github.com/dmno-dev/varlock/commit/86c02bf7f5283c487c576e884699f94863b4773e)]:
8+
9+
310
## 0.0.7
411

512
### Patch Changes

packages/integrations/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/nextjs-integration",
33
"description": "drop-in replacement for @next/env that uses varlock to load .env files with validation and extra security features",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

packages/integrations/vite/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @varlock/vite-integration
22

3+
## 0.0.5
4+
5+
### Patch Changes
6+
7+
- [#116](https://github.com/dmno-dev/varlock/pull/116) [`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5) Thanks [@theoephraim](https://github.com/theoephraim)! - - make Vite plugin work for SSR scenarios, injecting code and resolved env (in some cases)
8+
- detect Cloudflare Vite plugin
9+
- make compatible with React Router 7
10+
- simplify astro integration to rely on vite integration more
11+
- Updated dependencies [[`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5), [`86c02bf`](https://github.com/dmno-dev/varlock/commit/86c02bf7f5283c487c576e884699f94863b4773e)]:
12+
13+
314
## 0.0.4
415

516
### Patch Changes

packages/integrations/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/vite-integration",
33
"description": "Vite plugin to use varlock for .env file loading - adds validation, type-safety, and extra security features",
4-
"version": "0.0.4",
4+
"version": "0.0.5",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

packages/varlock/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# varlock
22

3+
## 0.0.9
4+
5+
### Patch Changes
6+
7+
- [#116](https://github.com/dmno-dev/varlock/pull/116) [`9e8b40a`](https://github.com/dmno-dev/varlock/commit/9e8b40a04360dc78c82d29da261f378a0d2d92f5) Thanks [@theoephraim](https://github.com/theoephraim)! - fix bug with global Response patching (for cloudflare)
8+
9+
- [#114](https://github.com/dmno-dev/varlock/pull/114) [`86c02bf`](https://github.com/dmno-dev/varlock/commit/86c02bf7f5283c487c576e884699f94863b4773e) Thanks [@philmillman](https://github.com/philmillman)! - Fixed git not installed error
10+
311
## 0.0.8
412

513
### Patch Changes

0 commit comments

Comments
 (0)