Skip to content

Commit

Permalink
chore(release): version packages (#2012)
Browse files Browse the repository at this point in the history
* chore(release): version packages

* fix(agent): corrected metric names to use underscore instead of camel case
chore(package.json): simplify keywords array in package.json files

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: chronark <[email protected]>
  • Loading branch information
3 people authored Aug 6, 2024
1 parent bdad4b6 commit f0ef80c
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .changeset/wise-cats-melt.md

This file was deleted.

4 changes: 2 additions & 2 deletions apps/agent/pkg/prometheus/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ var (
RatelimitPushPullEvents = promauto.NewCounterVec(prometheus.CounterOpts{
Namespace: "agent",
Subsystem: "ratelimit",
Name: "pushpull_events",
Name: "push_pull_events",
}, []string{"nodeId", "peerId"})
RatelimitPushPullLatency = promauto.NewHistogramVec(prometheus.HistogramOpts{
Namespace: "agent",
Subsystem: "ratelimit",
Name: "pushpull_latency",
Name: "push_pull_latency",
Help: "Latency of push/pull events in seconds",
}, []string{"nodeId", "peerId"})
)
6 changes: 6 additions & 0 deletions apps/dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @unkey/web

## 0.1.32

### Patch Changes

- @unkey/ratelimit@0.4.1

## 0.1.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unkey/dashboard",
"version": "0.1.31",
"version": "0.1.32",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
7 changes: 7 additions & 0 deletions apps/planetfall/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# planetfall

## 0.1.15

### Patch Changes

- Updated dependencies [bdad4b6]
- @unkey/api@0.24.0

## 0.1.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/planetfall/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planetfall",
"version": "0.1.14",
"version": "0.1.15",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
6 changes: 6 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @unkey/api

## 0.24.0

### Minor Changes

- bdad4b6: feat: mark keys as recoverable

## 0.23.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unkey/api",
"version": "0.23.0",
"version": "0.24.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/hono/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @unkey/hono

## 1.4.3

### Patch Changes

- Updated dependencies [bdad4b6]
- @unkey/api@0.24.0

## 1.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hono/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unkey/hono",
"version": "1.4.2",
"version": "1.4.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @unkey/nextjs

## 0.17.3

### Patch Changes

- Updated dependencies [bdad4b6]
- @unkey/api@0.24.0

## 0.17.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unkey/nextjs",
"version": "0.17.2",
"version": "0.17.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/ratelimit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @unkey/ratelimit

## 0.4.1

### Patch Changes

- Updated dependencies [bdad4b6]
- @unkey/api@0.24.0

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ratelimit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unkey/ratelimit",
"version": "0.4.0",
"version": "0.4.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down

1 comment on commit f0ef80c

@vercel
Copy link

@vercel vercel bot commented on f0ef80c Aug 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

planetfall – ./apps/planetfall

planetfall-two.vercel.app
planetfall-unkey.vercel.app
planetfall-git-main-unkey.vercel.app
planetfall.unkey.dev

Please sign in to comment.