Skip to content

Tags: eltociear/bloop

Tags

v0.3.1

Toggle v0.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
release v0.3.1 (BloopAI#285)

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
assortment of analytics changes (BloopAI#267)

* Change thread_id to UUID

* set session id in analytics event

* tweak analytics pipeline

* Update server/bleep/src/analytics.rs

* bump lockfile

* address clippy

* fix lint

* add types/uuid to green ci

---------

Co-authored-by: Louis Knight-Webb <louis@bloop.ai>
Co-authored-by: Gabriel Gordon-Hall <ggordonhall@gmail.com>

v0.2.3

Toggle v0.2.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 0.2.3 (BloopAI#220)

* improve search analytics

* prevent select all override if target is input

* bump version

v0.2.2

Toggle v0.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix unnecessary auth token refreshes after first expiry (BloopAI#208)

Previously, `created_at` was only set once during cookie creation. As
this value was never updated, once the initial token expires, the token
would remain in a permanent state where it would always want a refresh
for every subsequent request.

When in this state, and two requests are launched, this can cause a race
condition: both requests will try to refresh the token, and if the
earlier request returns later, this will result in a broken cookie.
Depending on when this happens in the race, this will usually result in
either a credential error or refresh token deserialization error.

In the app, this manifests itself as a `401 Unauthorized` response,
requiring the user to log in every expiry period in order to fix the
issue (8 hours by default for GitHub Apps).

To fix this, we update `created_at` on token refresh, so that
requests do not need to unnecessarily refresh the token after the first
expiry.

Co-authored-by: Gabriel Gordon-Hall <ggordonhall@gmail.com>

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump release version (BloopAI#204)

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
minor bugfix, release 0.2.0 (BloopAI#199)

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add logo and links to readme (BloopAI#21)

* add logo and links to readme

* add release link

* add dummy workflow to get around required checks

* update number of langs supported with precise code nav to account for JSX/TSX

Co-authored-by: Louis Knight-Webb <louis@bloop.ai>

v0.0.1

Toggle v0.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Start with telemetry popup (BloopAI#5)

* show telemetry popup before onboarding flow, enable sentry only after user consent

* remove automatic copyToClipboard function call because it causes 'user permission denied' error