Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deno to v2.1.2 #923

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f31f83d
chore: update deno to v2.0.6
Yohe-Am Nov 16, 2024
8fb0f67
chore: update deno to v2.1.2
Yohe-Am Dec 4, 2024
15d7cbe
fix: avoid use of setup-ghjk
Yohe-Am Dec 16, 2024
cb807a0
fix: ci
Yohe-Am Jan 2, 2025
7d2be27
Merge branch 'main' into chore/deno-2
Yohe-Am Jan 2, 2025
2acaff7
fix: remove bad dep
Yohe-Am Jan 3, 2025
cd7db98
fix: formatting
Yohe-Am Jan 3, 2025
b924886
fix: wip
Yohe-Am Jan 5, 2025
0e8c272
fix: client-s3 issues
Yohe-Am Jan 9, 2025
51cc2b8
fix: pre-commit issues
Yohe-Am Jan 9, 2025
4f96a32
fix: `selectAll` infinite recursion (#948)
luckasRanarison Jan 6, 2025
4e3f5e5
fix: patch proto to latest + update script (#953)
michael-0acf4 Jan 8, 2025
5ba5d65
feat: add json schema (#952)
luckasRanarison Jan 9, 2025
e25d55c
fix: all green :crossed_fingers:
Yohe-Am Jan 9, 2025
8d9b85e
fix: address feedback
Yohe-Am Jan 9, 2025
bc1bcbd
fix: address feedback
Yohe-Am Jan 9, 2025
a723414
fix: disable rust port
Yohe-Am Jan 9, 2025
5bb03ef
feat: Unify worker manager (#954)
Natoandro Jan 11, 2025
2ac0fdc
feat: force cleanup at boot with `SYNC_FORCE_REMOVE=true` (#956)
michael-0acf4 Jan 11, 2025
b8eebba
perf: use predefined function for context check policies (#959)
Natoandro Jan 11, 2025
9fad4e9
fix: bad name on shared types (#955)
michael-0acf4 Jan 13, 2025
733d693
fix(gate,sdk): fail fast on bad credentials before artifact upload (#…
michael-0acf4 Jan 13, 2025
3fe222a
fix: where type issues (#958)
Yohe-Am Jan 13, 2025
527c993
fix: merge issues
Yohe-Am Jan 15, 2025
6f29210
fix: merge issues 2
Yohe-Am Jan 15, 2025
5349d10
fix: merge issues 3
Yohe-Am Jan 15, 2025
0667aea
fix: merge issues 4
Yohe-Am Jan 15, 2025
ae9efd3
fix: merge issues 5
Yohe-Am Jan 15, 2025
d8ed8e5
fix: deno lockfile issues
Yohe-Am Jan 15, 2025
9390ca4
fix: deno lockfile issues 2
Yohe-Am Jan 15, 2025
3222078
Merge branch 'main' into chore/deno-2
Yohe-Am Jan 21, 2025
2383b82
wip: wip
Yohe-Am Jan 21, 2025
456629b
wip: defeat
Yohe-Am Jan 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 54 additions & 47 deletions .ghjk/lock.json

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- uses: actions/cache@v4
with:
path: .venv
Expand Down
32 changes: 27 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ jobs:
- uses: WyriHaximus/[email protected]
id: latest-tag
- uses: kenji-miyake/setup-git-cliff@v2
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- shell: bash
run: |
VERSION=$(ghjk x version-print)
Expand All @@ -52,7 +58,7 @@ jobs:
makeLatest: true
bodyFile: "CHANGE.md"
discussionCategory: "Announcements"
prerelease: ${{ contains(steps.latest-tag.outputs.tag, 'dev') || contains(steps.latest-tag.outputs.tag, 'alpha') }}
prerelease: ${{ contains(steps.latest-tag.outputs.tag, 'dev') || contains(steps.latest-tag.outputs.tag, 'rc') }}

pub-meta-cli:
needs:
Expand Down Expand Up @@ -97,7 +103,11 @@ jobs:
with:
fetch-depth: 0
# some targets don't use cross so will require the deps in the host
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- uses: WyriHaximus/[email protected]
id: latest-tag
- uses: dsherret/rust-toolchain-file@v1
Expand Down Expand Up @@ -172,7 +182,13 @@ jobs:
id: latest-tag
- uses: dsherret/rust-toolchain-file@v1
- uses: mozilla-actions/[email protected]
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- shell: bash
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
Expand Down Expand Up @@ -305,7 +321,13 @@ jobs:
fetch-depth: 0
- uses: dsherret/rust-toolchain-file@v1
- uses: kenji-miyake/setup-git-cliff@v2
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- id: bump
run: |
ghjk x version-bump prerelease
Expand Down
43 changes: 34 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ concurrency:

env:
GHJK_VERSION: "v0.2.1"
# GHJK_LOG: "debug"
GHJK_ENV: "ci"
RUST_BACKTRACE: "full"
DENO_DIR: deno-dir
Expand Down Expand Up @@ -87,7 +88,13 @@ jobs:
run: echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- if: ${{ env.AWS_ACCESS_KEY_ID != '' }}
uses: mozilla-actions/[email protected]
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook
Yohe-Am marked this conversation as resolved.
Show resolved Hide resolved

- shell: bash
run: |
sudo apt update && sudo apt install -y --no-install-recommends libclang-dev clang
Expand Down Expand Up @@ -130,10 +137,16 @@ jobs:
run: echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- if: ${{ env.AWS_ACCESS_KEY_ID != '' }}
uses: mozilla-actions/[email protected]
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
with:
# temporary fix
cache-key-prefix: ${{ matrix.os }}

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
# with:
# # temporary fix
# cache-key-prefix: ${{ matrix.os }}
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- run: echo "BASH_ENV=$HOME/.local/share/ghjk/env.sh" >> "$GITHUB_ENV"
- run: ghjk envs cook

- if: ${{ matrix.cross }}
shell: bash
env:
Expand All @@ -157,7 +170,13 @@ jobs:
# with:
# path: ${{ env.DENO_DIR }}
# key: deno-mac-${{ hashFiles('**/deno.lock') }}
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "~/.local/bin" >> $GITHUB_PATH
- run: echo "BASH_ENV=~/.local/share/ghjk/env.sh" >> $GITHUB_ENV
- run: ghjk envs cook

- name: Cache .venv dir
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -262,9 +281,15 @@ jobs:
- run: |
sudo apt update
sudo apt install -y --no-install-recommends zstd
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
with:
cache-disable: true

# - uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc
# with:
# cache-disable: true
- run: curl -fsSL "https://raw.github.com/metatypedev/ghjk/$GHJK_VERSION/install.sh" | bash
- run: echo "~/.local/bin" >> $GITHUB_PATH
- run: echo "BASH_ENV=~/.local/share/ghjk/env.sh" >> $GITHUB_ENV
- run: ghjk envs cook

- shell: bash
run: |
# the big run
Expand Down
Loading
Loading