Skip to content

Commit

Permalink
Update Deno permission requirements in installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Jul 2, 2024
1 parent 4259021 commit 50ae8da
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To install Pup, make sure you run the latest version of your runtime environment
**Deno**:

```bash
deno run -Ar jsr:@pup/[email protected].41 setup --channel prerelease
deno run -Ar jsr:@pup/[email protected].42 setup --channel prerelease
```

This command downloads the latest version of Pup and installs it on your system. The `--channel prerelease` option is included as there is no stable version of Pup yet. Read more abour release
Expand Down
3 changes: 2 additions & 1 deletion application.meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

const Application = {
name: "pup",
version: "1.0.0-rc.41",
version: "1.0.0-rc.42",
url: "jsr:@pup/pup@$VERSION",
description: "Powerful universal process manager, designed to keep your scripts, applications and services alive.",
canary_url: "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
Expand All @@ -36,6 +36,7 @@ const Application = {
"--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease,uid,gid",
"--allow-net",
"--allow-run",
"--allow-ffi",
],
}

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pup/pup",
"version": "1.0.0-rc.41",
"version": "1.0.0-rc.42",

"exports": {
".": "./pup.ts",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Universal Process Manager"
},
"substitute": {
"$PUP_VERSION": "1.0.0-rc.41"
"$PUP_VERSION": "1.0.0-rc.42"
},
"top_links": [
{
Expand Down
4 changes: 4 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ nav_order: 13

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

## [1.0.0-rc.42] - 2024-07-03

- fix(core): Add allow-ffi permission for cbor-x

## [1.0.0-rc.41] - 2024-07-03

- fix(setup): Fixes regression bug in installer
Expand Down
15 changes: 15 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
"canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts",
"stable": [],
"prerelease": [
{
"version": "1.0.0-rc.42",
"url": "jsr:@pup/[email protected]",
"deno": "1.43.0",
"deno_unstable": "1.43.0",
"default_permissions": [
"--allow-env",
"--allow-read",
"--allow-write",
"--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease,uid,gid",
"--allow-net",
"--allow-run",
"--allow-ffi"
]
},
{
"version": "1.0.0-rc.41",
"url": "jsr:@pup/[email protected]",
Expand Down

0 comments on commit 50ae8da

Please sign in to comment.