Skip to content

Commit

Permalink
chore: Release 1.0.0-alpha.7 (#79)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
blaine-arcjet and github-actions[bot] authored Dec 21, 2023
1 parent a67be47 commit 6879404
Show file tree
Hide file tree
Showing 22 changed files with 260 additions and 85 deletions.
20 changes: 10 additions & 10 deletions .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
".": "1.0.0-alpha.6",
"analyze": "1.0.0-alpha.6",
"arcjet": "1.0.0-alpha.6",
"arcjet-next": "1.0.0-alpha.6",
"eslint-config": "1.0.0-alpha.6",
"ip": "1.0.0-alpha.6",
"logger": "1.0.0-alpha.6",
"protocol": "1.0.0-alpha.6",
"rollup-config": "1.0.0-alpha.6",
"tsconfig": "1.0.0-alpha.6"
".": "1.0.0-alpha.7",
"analyze": "1.0.0-alpha.7",
"arcjet": "1.0.0-alpha.7",
"arcjet-next": "1.0.0-alpha.7",
"eslint-config": "1.0.0-alpha.7",
"ip": "1.0.0-alpha.7",
"logger": "1.0.0-alpha.7",
"protocol": "1.0.0-alpha.7",
"rollup-config": "1.0.0-alpha.7",
"tsconfig": "1.0.0-alpha.7"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2023-12-21)


### ⚠ BREAKING CHANGES

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18))

### 🪲 Bug Fixes

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18)) ([3b0c1fb](https://github.com/arcjet/arcjet-js/commit/3b0c1fb5a19f5c6d15a0b83bdd24db0192aa9e49))


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### ✅ Continuous Integration

* Switch to github token ([#81](https://github.com/arcjet/arcjet-js/issues/81)) ([cfc382a](https://github.com/arcjet/arcjet-js/commit/cfc382a1652358a2e8f1035f6baa78c509f846f4))

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2023-12-18)


Expand Down
18 changes: 18 additions & 0 deletions analyze/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...@arcjet/analyze-v1.0.0-alpha.7) (2023-12-21)


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @arcjet/logger bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* devDependencies
* @arcjet/eslint-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/rollup-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/tsconfig bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...@arcjet/analyze-v1.0.0-alpha.6) (2023-12-18)


Expand Down
10 changes: 5 additions & 5 deletions analyze/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcjet/analyze",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Arcjet local analysis engine",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down Expand Up @@ -35,12 +35,12 @@
"./wasm/arcjet_analyze_js_req_bg.js"
],
"dependencies": {
"@arcjet/logger": "1.0.0-alpha.6"
"@arcjet/logger": "1.0.0-alpha.7"
},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-alpha.6",
"@arcjet/rollup-config": "1.0.0-alpha.6",
"@arcjet/tsconfig": "1.0.0-alpha.6",
"@arcjet/eslint-config": "1.0.0-alpha.7",
"@arcjet/rollup-config": "1.0.0-alpha.7",
"@arcjet/tsconfig": "1.0.0-alpha.7",
"@jest/globals": "29.7.0",
"@rollup/wasm-node": "4.9.1",
"@types/node": "18.18.0",
Expand Down
28 changes: 28 additions & 0 deletions arcjet-next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...@arcjet/next-v1.0.0-alpha.7) (2023-12-21)


### ⚠ BREAKING CHANGES

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18))

### 🪲 Bug Fixes

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18)) ([3b0c1fb](https://github.com/arcjet/arcjet-js/commit/3b0c1fb5a19f5c6d15a0b83bdd24db0192aa9e49))


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @arcjet/ip bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* arcjet bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* devDependencies
* @arcjet/eslint-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/rollup-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/tsconfig bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...@arcjet/next-v1.0.0-alpha.6) (2023-12-18)


Expand Down
12 changes: 6 additions & 6 deletions arcjet-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcjet/next",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Arcjet SDK for the Next.js framework",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down Expand Up @@ -31,15 +31,15 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests"
},
"dependencies": {
"@arcjet/ip": "1.0.0-alpha.6",
"@arcjet/ip": "1.0.0-alpha.7",
"@connectrpc/connect-web": "1.2.0",
"arcjet": "1.0.0-alpha.6",
"arcjet": "1.0.0-alpha.7",
"next": "14.0.4"
},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-alpha.6",
"@arcjet/rollup-config": "1.0.0-alpha.6",
"@arcjet/tsconfig": "1.0.0-alpha.6",
"@arcjet/eslint-config": "1.0.0-alpha.7",
"@arcjet/rollup-config": "1.0.0-alpha.7",
"@arcjet/tsconfig": "1.0.0-alpha.7",
"@jest/globals": "29.7.0",
"@types/node": "18.18.0",
"@rollup/wasm-node": "4.9.1",
Expand Down
29 changes: 29 additions & 0 deletions arcjet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...arcjet-v1.0.0-alpha.7) (2023-12-21)


### ⚠ BREAKING CHANGES

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18))

### 🪲 Bug Fixes

* Reorganize SDK types to tighten helpers around custom props ([#18](https://github.com/arcjet/arcjet-js/issues/18)) ([3b0c1fb](https://github.com/arcjet/arcjet-js/commit/3b0c1fb5a19f5c6d15a0b83bdd24db0192aa9e49))


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @arcjet/analyze bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/logger bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/protocol bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* devDependencies
* @arcjet/eslint-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/rollup-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/tsconfig bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...arcjet-v1.0.0-alpha.6) (2023-12-18)


Expand Down
14 changes: 7 additions & 7 deletions arcjet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arcjet",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Arcjet TypeScript and JavaScript SDK core",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down Expand Up @@ -31,14 +31,14 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@arcjet/analyze": "1.0.0-alpha.6",
"@arcjet/logger": "1.0.0-alpha.6",
"@arcjet/protocol": "1.0.0-alpha.6"
"@arcjet/analyze": "1.0.0-alpha.7",
"@arcjet/logger": "1.0.0-alpha.7",
"@arcjet/protocol": "1.0.0-alpha.7"
},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-alpha.6",
"@arcjet/rollup-config": "1.0.0-alpha.6",
"@arcjet/tsconfig": "1.0.0-alpha.6",
"@arcjet/eslint-config": "1.0.0-alpha.7",
"@arcjet/rollup-config": "1.0.0-alpha.7",
"@arcjet/tsconfig": "1.0.0-alpha.7",
"@edge-runtime/jest-environment": "2.3.7",
"@jest/globals": "29.7.0",
"@rollup/wasm-node": "4.9.1",
Expand Down
7 changes: 7 additions & 0 deletions eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...@arcjet/eslint-config-v1.0.0-alpha.7) (2023-12-21)


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...@arcjet/eslint-config-v1.0.0-alpha.6) (2023-12-18)


Expand Down
2 changes: 1 addition & 1 deletion eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcjet/eslint-config",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Custom eslint config for Arcjet projects",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down
16 changes: 16 additions & 0 deletions ip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...@arcjet/ip-v1.0.0-alpha.7) (2023-12-21)


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @arcjet/eslint-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/rollup-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/tsconfig bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...@arcjet/ip-v1.0.0-alpha.6) (2023-12-18)


Expand Down
8 changes: 4 additions & 4 deletions ip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcjet/ip",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Arcjet utilities for finding the originating IP of a request",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down Expand Up @@ -32,9 +32,9 @@
},
"dependencies": {},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-alpha.6",
"@arcjet/rollup-config": "1.0.0-alpha.6",
"@arcjet/tsconfig": "1.0.0-alpha.6",
"@arcjet/eslint-config": "1.0.0-alpha.7",
"@arcjet/rollup-config": "1.0.0-alpha.7",
"@arcjet/tsconfig": "1.0.0-alpha.7",
"@jest/globals": "29.7.0",
"@rollup/wasm-node": "4.9.1",
"@types/node": "18.18.0",
Expand Down
16 changes: 16 additions & 0 deletions logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.0.0-alpha.7](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.6...@arcjet/logger-v1.0.0-alpha.7) (2023-12-21)


### 📦 Dependencies

* **dev:** Bump the dev-dependencies group with 5 updates ([#82](https://github.com/arcjet/arcjet-js/issues/82)) ([a67be47](https://github.com/arcjet/arcjet-js/commit/a67be47b76e623f1aef6687f9dcc87de8eb2f1da))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @arcjet/eslint-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/rollup-config bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7
* @arcjet/tsconfig bumped from 1.0.0-alpha.6 to 1.0.0-alpha.7

## [1.0.0-alpha.6](https://github.com/arcjet/arcjet-js/compare/v1.0.0-alpha.5...@arcjet/logger-v1.0.0-alpha.6) (2023-12-18)


Expand Down
8 changes: 4 additions & 4 deletions logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcjet/logger",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Arcjet logging interface which mirrors the console interface but allows log levels",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
Expand Down Expand Up @@ -32,9 +32,9 @@
},
"dependencies": {},
"devDependencies": {
"@arcjet/eslint-config": "1.0.0-alpha.6",
"@arcjet/rollup-config": "1.0.0-alpha.6",
"@arcjet/tsconfig": "1.0.0-alpha.6",
"@arcjet/eslint-config": "1.0.0-alpha.7",
"@arcjet/rollup-config": "1.0.0-alpha.7",
"@arcjet/tsconfig": "1.0.0-alpha.7",
"@jest/globals": "29.7.0",
"@rollup/wasm-node": "4.9.1",
"@types/node": "18.18.0",
Expand Down
Loading

0 comments on commit 6879404

Please sign in to comment.