Skip to content
Merged
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
10 changes: 10 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Release 2.20.0

The 2.20 minor series tracks TensorFlow 2.20.

## Features
- Compatible with Python 3.13 (see next point)
- Added a dependency to Pillow (https://python-pillow.github.io/), to replace use of deprecated standard library `imghdr` (removed in Python 3.13) (#7009, thanks @Zamanhuseyinli)
- Updated vendored version of `bleach` library to 6.2.0 and removed dependency on `six` library. (#7013)


# Release 2.19.0

The 2.19 minor series tracks TensorFlow 2.19.
Expand Down
10 changes: 9 additions & 1 deletion tensorboard/compat/proto/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -777,9 +777,17 @@ message ConfigProto {
// disabled, and parallel execution is allowed.
bool disable_eager_executor_streaming_enqueue = 26;

// If true, the function library runtime will be finalized when the session
// is finalized.
bool finalize_function_library_runtime = 33;

// If true, the resource manager will be finalized when the session
// is finalized.
bool finalize_resource_manager = 34;

reserved 25;

// Next: 33
// Next: 35
}

Experimental experimental = 16;
Expand Down
9 changes: 2 additions & 7 deletions tensorboard/compat/proto/tfprof_log.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,12 @@ option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/profile
message CodeDef {
repeated Trace traces = 1;
message Trace {
string file = 1 [deprecated = true]; // deprecated by file_id.
reserved 1, 3, 4;
reserved "file", "function", "line";
int64 file_id = 6;

int32 lineno = 2;

string function = 3 [deprecated = true]; // deprecated by function_id.
int64 function_id = 7;

string line = 4 [deprecated = true]; // deprecated line_id.
int64 line_id = 8;

int32 func_start_line = 5;
}
}
Expand Down
4 changes: 4 additions & 0 deletions tensorboard/compat/proto/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ enum DataType {

DT_INT4 = 29;
DT_UINT4 = 30;
DT_INT2 = 31;
DT_UINT2 = 32;

// Do not use! These are only for TF1's obsolete reference Variables.
// Every enum above should have a corresponding value below (verified by
Expand Down Expand Up @@ -87,6 +89,8 @@ enum DataType {
DT_FLOAT8_E5M2FNUZ_REF = 128;
DT_INT4_REF = 129;
DT_UINT4_REF = 130;
DT_INT2_REF = 131;
DT_UINT2_REF = 132;
}
// DISABLED.ThenChange(
// https://www.tensorflow.org/code/tensorflow/c/tf_datatype.h,
Expand Down
Binary file modified tensorboard/data/server/descriptor.bin
Binary file not shown.
4 changes: 4 additions & 0 deletions tensorboard/data/server/tensorboard.pb.rs

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

2 changes: 1 addition & 1 deletion tensorboard/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

"""Contains the version string."""

VERSION = "2.20.0a0"
VERSION = "2.21.0a0"

if __name__ == "__main__":
print(VERSION)