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

release/0.7.4-beta based on release/0.7.3-beta #563

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
53c5f10
Revert "[ABI] Remove the special first element of iterator (#420)"
cloutiertyler Oct 18, 2023
aa7f14b
Revert "Switch to using imported module idents for marking version re…
cloutiertyler Oct 18, 2023
5bf7d69
Fixed issues with revert
cloutiertyler Oct 18, 2023
ac39cd4
Fix unused imports
Oct 31, 2023
a7ab434
Cargo fmt
Oct 31, 2023
b247004
Fixed cherry-picking issues
cloutiertyler Oct 31, 2023
7d26e9f
cargo fmt
cloutiertyler Oct 31, 2023
339ffc7
Spacetime Upgrade (#339)
jdetter Oct 31, 2023
348a408
Expose `delete_by_rel` (#515)
Centril Nov 1, 2023
21042f2
Add OptIn serialization attribute for C# generated types (#516)
aasoni Nov 1, 2023
63c5132
fix benchmarks run on master (#487)
coolreader18 Nov 1, 2023
5f88fb1
fix(518): Label connected clients metric by database (#523)
joshua-spacetime Nov 3, 2023
5b33b7d
refactor(520): Change histogram units from nanos to fractional secs (…
joshua-spacetime Nov 4, 2023
18db80c
Refactor commit encoding / decoding (#495)
kim Nov 6, 2023
c5c4e9a
lib: Provide `Arbitrary` impls for `Hash` and `DataKey`
kim Nov 1, 2023
be06dd1
perf(505): Track the number of rows in each table (#525)
joshua-spacetime Nov 6, 2023
e22a7d9
refactor(531): Label transaction count metric with boolean flag (#532)
joshua-spacetime Nov 7, 2023
d1a6dc2
perf(507): Add disk and memory usage metrics (#529)
joshua-spacetime Nov 7, 2023
90252e8
Added multi column index usage to the rust-wasm-test module (#500)
cloutiertyler Nov 7, 2023
e973fed
Cherry Pick for Publish Primitives Fixes (#514)
jdetter Nov 7, 2023
8cdb7cc
Track instance_queue_length by reducer (#530)
joshua-spacetime Nov 7, 2023
71ff0bf
Version upgrade to v0.7.3
Nov 7, 2023
cea4eb0
Builds CLIs on release/* branches
Nov 8, 2023
5ec7eeb
Downgrade a log line from info to debug (#540)
kulakowski Nov 8, 2023
7cd5eef
InstanceEnv::delete_by_col_eq: return u32 instead of NonZeroU32 (#539)
Centril Nov 8, 2023
9a40c94
perf(553): Optimize index joins for incremental evaluation
joshua-spacetime Nov 15, 2023
1b4e63a
Fix out of order subscription updates
coolreader18 Nov 13, 2023
7bc5a2a
Compilation fixes
Nov 15, 2023
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
5 changes: 4 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ env.PR_REF || github.ref }}
# if we're on master we want to know what the sha of HEAD~1 is so
# that we can compare results from it to HEAD (in the "Fetch markdown
# summary PR" step). otherwise, we can use a fully shallow checkout
fetch-depth: ${{ env.PR_NUMBER && 1 || 2 }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -145,7 +149,6 @@ jobs:
OLD=master
NEW=pr-$PR_NUMBER
else
git fetch
OLD=$(git rev-parse HEAD~1)
NEW=$GITHUB_SHA
fi
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '**'
branches:
- master
- release/*

jobs:
linux-amd64-cli:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '**'
branches:
- master
- release/*

jobs:
macos-cli:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '**'
branches:
- master
- release/*

jobs:
windows-cli:
Expand Down
120 changes: 100 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading