Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions go/chat/s3/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,10 @@ func (b *Bucket) Del(ctx context.Context, path string) error {
b.addTokenHeader(headers)

req := &request{
method: "DELETE",
bucket: b.Name,
path: path,
method: "DELETE",
bucket: b.Name,
path: path,
headers: headers,
}
return b.S3.query(ctx, req, nil)
}
Expand Down
2 changes: 1 addition & 1 deletion go/libkb/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
package libkb

// Version is the current version (should be MAJOR.MINOR.PATCH)
const Version = "6.5.4"
const Version = "6.5.5"
35 changes: 28 additions & 7 deletions packaging/build_darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,31 @@
gopath=${GOPATH:-}
client_dir="$gopath/src/github.com/keybase/client"

"$client_dir/packaging/slack/send.sh" "Starting darwin build"
ARCH="amd64" PLATFORM="darwin" "$client_dir/packaging/prerelease/pull_build.sh"
# NOTE: We build the arm64 version second to get a later timestamp, so it will
# be presented as a later version to your updater. This allows the one-time
# upgrading from the x86 build to the arm64 one.
"$client_dir/packaging/slack/send.sh" "Starting darwin-arm64 build"
ARCH="arm64" PLATFORM="darwin-arm64" "$client_dir/packaging/prerelease/pull_build.sh"
if [[ -n "${ARCH:-}" ]]; then
# If ARCH is specified, only build that one
if [[ "$ARCH" == "amd64" ]]; then
"$client_dir/packaging/slack/send.sh" "Starting darwin build"
ARCH="amd64" PLATFORM="darwin" "$client_dir/packaging/prerelease/pull_build.sh"
elif [[ "$ARCH" == "arm64" ]]; then
"$client_dir/packaging/slack/send.sh" "Starting darwin-arm64 build"
ARCH="arm64" PLATFORM="darwin-arm64" "$client_dir/packaging/prerelease/pull_build.sh"
else
echo "Unknown ARCH: $ARCH (expected amd64 or arm64)"
exit 1
fi
else
# Build both architectures
"$client_dir/packaging/slack/send.sh" "Starting darwin build"
ARCH="amd64" PLATFORM="darwin" "$client_dir/packaging/prerelease/pull_build.sh"

# Clean repo between arch builds
echo "Cleaning repo..."
cd "$client_dir" && git reset --hard && git clean -fd
git status

# NOTE: We build the arm64 version second to get a later timestamp, so it will
# be presented as a later version to your updater. This allows the one-time
# upgrading from the x86 build to the arm64 one.
"$client_dir/packaging/slack/send.sh" "Starting darwin-arm64 build"
ARCH="arm64" PLATFORM="darwin-arm64" "$client_dir/packaging/prerelease/pull_build.sh"
fi
2 changes: 1 addition & 1 deletion shared/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: "com.facebook.react"
apply plugin: 'com.github.triplet.play'

// KB: app version
def VERSION_NAME = "6.5.4"
def VERSION_NAME = "6.5.5"

// KB: Number of commits, like ios
Integer getVersionCode() {
Expand Down
12 changes: 6 additions & 6 deletions shared/chat/blocking/block-modal/container.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as C from '@/constants'
import * as Constants from '@/constants/users'
import * as React from 'react'
import BlockModal, {type BlockModalContext, type BlockType, type NewBlocksMap, type ReportSettings} from '.'
import BlockModal, { type BlockModalContext, type BlockType, type NewBlocksMap, type ReportSettings } from '.'

type OwnProps = {
blockUserByDefault?: boolean
Expand All @@ -16,7 +16,7 @@ type OwnProps = {
}

const Container = (ownProps: OwnProps) => {
const {context, conversationIDKey} = ownProps
const { context, conversationIDKey } = ownProps
const teamname = ownProps.team
const blockUserByDefault = ownProps.blockUserByDefault ?? false
const filterUserByDefault = ownProps.filterUserByDefault ?? false
Expand All @@ -39,7 +39,7 @@ const Container = (ownProps: OwnProps) => {
adderUsername,
blockUserByDefault,
context,
conversationIDKey,
convID: conversationIDKey,
filterUserByDefault,
finishWaiting: waitingForLeave || waitingForBlocking || waitingForReport,
flagUserByDefault,
Expand Down Expand Up @@ -104,11 +104,11 @@ const Container = (ownProps: OwnProps) => {
onFinish: (newBlocks: NewBlocksMap, blockTeam: boolean) => {
let takingAction = false
if (blockTeam) {
const {teamname} = stateProps
const { teamname } = stateProps
if (teamname) {
takingAction = true
leaveTeamAndBlock(teamname)
} else if (stateProps.conversationIDKey) {
} else if (stateProps.convID) {
takingAction = true
const anyReported = [...newBlocks.values()].some(v => v.report !== undefined)
setConversationStatus(anyReported)
Expand All @@ -119,7 +119,7 @@ const Container = (ownProps: OwnProps) => {
setUserBlocks(newBlocks)
}
newBlocks.forEach(
({report}, username) => report && reportUser(username, stateProps.conversationIDKey, report)
({ report }, username) => report && reportUser(username, stateProps.convID, report)
)
if (!takingAction) {
onClose()
Expand Down
3 changes: 1 addition & 2 deletions shared/chat/blocking/block-modal/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ const Block = React.lazy(async () => import('./container'))
type OwnProps = C.Chat.ChatProviderProps<C.ViewPropsToPageProps<typeof Block>>

const Screen = (p: OwnProps) => {
const {conversationIDKey, ...rest} = p.route.params
return (
<C.Chat.ProviderScreen rp={p} canBeNull={true}>
<Block {...rest} />
<Block {...p.route.params} />
</C.Chat.ProviderScreen>
)
}
Expand Down
5 changes: 2 additions & 3 deletions shared/desktop/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
macOS:

• Fix the KBFS mount to work on macOS 26 (Tahoe).
• Fix minor chat bugs.
• Fix option to include transcripts on chat reports.
2 changes: 1 addition & 1 deletion shared/ios/Keybase/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>6.5.4</string>
<string>6.5.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion shared/ios/KeybaseShare/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>6.5.4</string>
<string>6.5.5</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSExtension</key>
Expand Down