author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
260,539
10.01.2023 11:01:54
28,800
d1edad6a68b97e781e26ff7818fc5d56d39da367
Typos: suited -> suitable, node -> host
[ { "change_type": "MODIFY", "old_path": "jax/_src/distributed.py", "new_path": "jax/_src/distributed.py", "diff": "@@ -132,7 +132,7 @@ def initialize(coordinator_address: Optional[str] = None,\nand all processes agree on the port.\nMay be ``None`` only on supported environments, in which case it will...
Python
Apache License 2.0
google/jax
Typos: suited -> suitable, node -> host
260,411
04.01.2023 15:47:36
-7,200
f7093955dc0cb4de070fa702cab8087958e865fd
[jax2tf] Fixed the shape-polymorphic lowering for lax.pad and dynamic_slice Generate DynamicPadOp instea of PadOp when the padding sizes are not constant. Fix the generation of RealDynamicSliceOp. Exclude some tests that fail due to unimplemented support for custom calls with polymorphic shapes.
[ { "change_type": "MODIFY", "old_path": "jax/_src/lax/lax.py", "new_path": "jax/_src/lax/lax.py", "diff": "@@ -3172,11 +3172,10 @@ ad.deflinear2(pad_p, _pad_transpose)\nbatching.primitive_batchers[pad_p] = _pad_batch_rule\ndef _pad_lower(ctx, x, padding_value, *, padding_config):\n+ aval_out, = ctx.a...
Python
Apache License 2.0
google/jax
[jax2tf] Fixed the shape-polymorphic lowering for lax.pad and dynamic_slice Generate DynamicPadOp instea of PadOp when the padding sizes are not constant. Fix the generation of RealDynamicSliceOp. Exclude some tests that fail due to unimplemented support for custom calls with polymorphic shapes.
260,335
10.01.2023 13:39:25
28,800
8b585302db6f63c422a5fa5f4e5335ea863c9aa3
add pjit partial_eval_jaxpr_custom rule fix some issues with closed_call's partial_eval_jaxpr_custom rule
[ { "change_type": "MODIFY", "old_path": "jax/_src/core.py", "new_path": "jax/_src/core.py", "diff": "@@ -146,6 +146,7 @@ class ClosedJaxpr:\ndef __init__(self, jaxpr: Jaxpr, consts: Sequence):\nassert len(consts) == len(jaxpr.constvars)\n+ # assert not any(isinstance(c, Tracer) for c in consts) # TOD...
Python
Apache License 2.0
google/jax
add pjit partial_eval_jaxpr_custom rule fix some issues with closed_call's partial_eval_jaxpr_custom rule Co-authored-by: Yash Katariya <yashkatariya@google.com>
260,419
09.01.2023 11:42:20
21,600
b86030d86fc461e4323f933ad5081043cff3a994
Add Open MPI automatic distributed initialization
[ { "change_type": "MODIFY", "old_path": "docs/multi_process.md", "new_path": "docs/multi_process.md", "diff": "@@ -78,11 +78,12 @@ jax.distributed.initialize(coordinator_address=\"192.168.0.1:1234\",\nprocess_id=0)\n```\n-On Cloud TPU and Slurm environments, you can simply call {func}`jax.distributed...
Python
Apache License 2.0
google/jax
Add Open MPI automatic distributed initialization
260,689
12.01.2023 12:57:30
-3,600
6b8125b3204e8541911460e0271eff7c68f756bf
mgrid: Fix zero-length meshgrid
[ { "change_type": "MODIFY", "old_path": "jax/_src/numpy/index_tricks.py", "new_path": "jax/_src/numpy/index_tricks.py", "diff": "@@ -54,7 +54,11 @@ class _IndexGrid(abc.ABC):\nwith jax.numpy_dtype_promotion('standard'):\noutput = _promote_dtypes(*output)\noutput_arr = jnp.meshgrid(*output, indexing='...
Python
Apache License 2.0
google/jax
mgrid: Fix zero-length meshgrid
260,510
12.01.2023 22:57:49
28,800
c9a57e1b44875ab6b09c9ad92ba955f554def9bc
Delete `jax.experimental.callback`
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -8,6 +8,9 @@ Remember to align the itemized text with the first line of an item within a list\n## jax 0.4.2\n+* Breaking changes\n+ * Deleted `jax.experimental.callback`\n+\n## jaxlib 0.4.2\n## jax 0.4.1 (...
Python
Apache License 2.0
google/jax
Delete `jax.experimental.callback` PiperOrigin-RevId: 501760507
260,356
13.01.2023 09:59:40
28,800
2257e2075dff0cf6b030b61ce8b419937d76d34c
Update doc landing page
[ { "change_type": "MODIFY", "old_path": "docs/_static/style.css", "new_path": "docs/_static/style.css", "diff": "@import url(\"theme.css\");\n+:root {\n+ --block-bg-opacity: .5;\n+}\n+\n.wy-side-nav-search {\nbackground-color: #fff;\n}\n+\n+.getting-started {\n+ background-color: rgba(78, 150, 253, v...
Python
Apache License 2.0
google/jax
Update doc landing page Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com> Co-authored-by: Jake VanderPlas <jakevdp@google.com>
260,411
12.01.2023 08:44:53
-3,600
ade56916300e2c6e50d47609d93742cb160355e4
[call_tf] Add has_side_effects parameter The CallTfEffect was added recently as an internal workaround for DCE removing instances of call_tf. Here we add a parameter to `call_tf` to be able to declare if the called computation is effectful and should not be removed by DCE.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -11,6 +11,11 @@ Remember to align the itemized text with the first line of an item within a list\n* Breaking changes\n* Deleted `jax.experimental.callback`\n+* Changes\n+ * {func}`jax2tf.call_tf` has a new...
Python
Apache License 2.0
google/jax
[call_tf] Add has_side_effects parameter The CallTfEffect was added recently as an internal workaround for DCE removing instances of call_tf. Here we add a parameter to `call_tf` to be able to declare if the called computation is effectful and should not be removed by DCE.
260,335
14.01.2023 20:55:34
28,800
1da24b61fc63ea035f56b454119d2a4693d6f6fe
fix transcription error for initial_step_size (thanks fixes
[ { "change_type": "MODIFY", "old_path": "jax/experimental/ode.py", "new_path": "jax/experimental/ode.py", "diff": "@@ -90,7 +90,7 @@ def initial_step_size(fun, t0, y0, order, rtol, atol, f0):\nh1 = jnp.where((d1 <= 1e-15) & (d2 <= 1e-15),\njnp.maximum(1e-6, h0 * 1e-3),\n- (0.01 / jnp.max(d1 + d2)) **...
Python
Apache License 2.0
google/jax
fix transcription error for initial_step_size (thanks @AlbertMitjans) fixes #13983
260,335
16.01.2023 10:29:59
28,800
e516d41180bb07767ef64a5d8e0581c8bcec5533
cond transpose, use UndefinedPrimal not `linear` for transpose inputs
[ { "change_type": "MODIFY", "old_path": "jax/_src/lax/control_flow/conditionals.py", "new_path": "jax/_src/lax/control_flow/conditionals.py", "diff": "@@ -687,7 +687,9 @@ def _transpose_cond_jaxpr(jaxpr, num_res, reduce_axes):\nreturn _make_closed_jaxpr(transposed, res_avals + jaxpr.out_avals)\ndef _...
Python
Apache License 2.0
google/jax
cond transpose, use UndefinedPrimal not `linear` for transpose inputs
260,510
16.01.2023 14:44:06
28,800
a58e59d98f516187bf8689e4107d3e6356bf06b4
Add in effects_barrier for the pmap unordered callback test
[ { "change_type": "MODIFY", "old_path": "tests/jaxpr_effects_test.py", "new_path": "tests/jaxpr_effects_test.py", "diff": "@@ -688,7 +688,6 @@ class ParallelEffectsTest(jtu.JaxTestCase):\njax.pmap(f)(jnp.arange(jax.local_device_count()))\n@jtu.pytest_mark_if_available('pjrt_c_api_unimplemented') # ho...
Python
Apache License 2.0
google/jax
Add in effects_barrier for the pmap unordered callback test PiperOrigin-RevId: 502434258
260,310
16.01.2023 22:42:42
28,800
469a8eb520baf8ad2c62aaa9271ce09ae81d2425
Change args_tf_flat to tf.TensorSpec in jax2tf.call_tf.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/jax2tf/call_tf.py", "new_path": "jax/experimental/jax2tf/call_tf.py", "diff": "@@ -352,14 +352,24 @@ def _code_generator_and_avals(\nelse:\ncaptured_inputs.append(inp)\n- # TODO(necula): It seems that we need concrete tensors for get_compiler_...
Python
Apache License 2.0
google/jax
Change args_tf_flat to tf.TensorSpec in jax2tf.call_tf. PiperOrigin-RevId: 502492762
260,411
17.01.2023 10:42:20
-7,200
cf4e568e2105945fe65efe4e7f18b9d446bd1c90
[shape_poly] Improve error message from vmap axis size inconsistency vmap tries hard to give nice error messages when the mapped axes for different arguments have different sizes, but the code to compute the error message can run into InconsistentDimensionOperation in presence of dimension polynomials. Ensure that the comparisons are done symbolically.
[ { "change_type": "MODIFY", "old_path": "jax/_src/api.py", "new_path": "jax/_src/api.py", "diff": "@@ -1685,8 +1685,13 @@ def _mapped_axis_size(fn, tree, vals, dims, name):\nfor x, d in zip(vals, dims)]\nsize_counts = collections.Counter(s for s in all_sizes if s is not None)\n(sz, ct), *other_counts...
Python
Apache License 2.0
google/jax
[shape_poly] Improve error message from vmap axis size inconsistency vmap tries hard to give nice error messages when the mapped axes for different arguments have different sizes, but the code to compute the error message can run into InconsistentDimensionOperation in presence of dimension polynomials. Ensure that the comparisons are done symbolically.
260,510
10.11.2022 12:00:21
28,800
3de5c2b7165e7e4374089fc5a6824cc9c20390d2
Add IO callback
[ { "change_type": "MODIFY", "old_path": "jax/_src/api.py", "new_path": "jax/_src/api.py", "diff": "@@ -3347,7 +3347,7 @@ def block_until_ready(x):\nreturn jax.tree_util.tree_map(try_to_block, x)\ndef pure_callback(callback: Callable[..., Any], result_shape_dtypes: Any,\n- *args: Any, **kwargs: Any):\...
Python
Apache License 2.0
google/jax
Add IO callback
260,411
18.01.2023 12:56:48
-7,200
58035a7b53cd07a826934d89bc7fea8bfbc2a3e0
[shape_poly] Fix handling of weak_type for conversions of symbolic dimensions to Array In presence of static shapes `jnp.array(x.shape[0])` has weak_type. We must preserve that behavior even with symbolic dimensions.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/jax2tf/shape_poly.py", "new_path": "jax/experimental/jax2tf/shape_poly.py", "diff": "@@ -461,6 +461,7 @@ class _DimPolynomial():\ncore.pytype_aval_mappings[_DimPolynomial] = _DimPolynomial.get_aval\nxla.pytype_aval_mappings[_DimPolynomial] = _...
Python
Apache License 2.0
google/jax
[shape_poly] Fix handling of weak_type for conversions of symbolic dimensions to Array In presence of static shapes `jnp.array(x.shape[0])` has weak_type. We must preserve that behavior even with symbolic dimensions.
260,631
18.01.2023 16:42:29
28,800
5f4e95b6c7e8d3531ba8630c8dc4965869682bf7
Add gcs support to serialization for internal tensor spec.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/gda_serialization/serialization.py", "new_path": "jax/experimental/gda_serialization/serialization.py", "diff": "@@ -109,21 +109,23 @@ def _spec_has_metadata(tree):\nreturn 'metadata' in tree or any(\n_spec_has_metadata(subtree) for _, subtree...
Python
Apache License 2.0
google/jax
Add gcs support to serialization for internal tensor spec. PiperOrigin-RevId: 503013068
260,582
12.01.2023 16:20:48
28,800
45c2f31887c9cc5bb94dea92c9e82b1d675ac095
Added shape error checking for compute_fans Update tests/nn_test.py
[ { "change_type": "MODIFY", "old_path": "jax/_src/nn/initializers.py", "new_path": "jax/_src/nn/initializers.py", "diff": "@@ -157,6 +157,10 @@ def _compute_fans(shape: core.NamedShape,\nAxes not in in_axis, out_axis, or batch_axis are assumed to constitute the\n\"receptive field\" of a convolution (...
Python
Apache License 2.0
google/jax
Added shape error checking for compute_fans Update tests/nn_test.py Co-authored-by: Jake Vanderplas <jakevdp@google.com>
260,631
20.01.2023 08:47:45
28,800
cd5b26a0b97762a76ab53d6bcdc8f66b02886394
Fix typo "invalud" -> "invalid" in error message.
[ { "change_type": "MODIFY", "old_path": "jax/_src/dispatch.py", "new_path": "jax/_src/dispatch.py", "diff": "@@ -286,7 +286,7 @@ def _xla_call_impl(fun: lu.WrappedFun, *args, device, backend, name,\n\"decorator were removed) was called in an attempt to get a more \"\n\"precise error message. However,...
Python
Apache License 2.0
google/jax
Fix typo "invalud" -> "invalid" in error message. PiperOrigin-RevId: 503452691
260,335
20.01.2023 10:51:02
28,800
cea2b6b6f82c5b7f68eafd4812e6881d751fa0cf
specialize tree prefix error message for list/tuple
[ { "change_type": "MODIFY", "old_path": "jax/_src/tree_util.py", "new_path": "jax/_src/tree_util.py", "diff": "@@ -492,13 +492,29 @@ def _prefix_error(key_path: KeyPath, prefix_tree: Any, full_tree: Any,\nf\" {type(full_tree)}.\".format(name=name))\nreturn # don't look for more errors in this subtree...
Python
Apache License 2.0
google/jax
specialize tree prefix error message for list/tuple
260,539
19.01.2023 15:53:01
28,800
59c71250eebb13aa04bdd743c319fefa079e5e4b
Adding to jax.experimental API doc
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/jax.experimental.custom_partitioning.rst", "diff": "+``jax.experimental.custom_partitioning`` module\n+===============================================\n+\n+.. automodule:: jax.experimental.custom_partitioning\n+\n+API\n+---\n+\n+.. autofunc...
Python
Apache License 2.0
google/jax
Adding @custom_partitioning to jax.experimental API doc
260,335
20.01.2023 11:40:22
28,800
358775f9010fdfc98cd2823fda6dbaaf630cee2d
update pjit test
[ { "change_type": "MODIFY", "old_path": "tests/pjit_test.py", "new_path": "tests/pjit_test.py", "diff": "@@ -3405,12 +3405,9 @@ class PJitErrorTest(jtu.JaxTestCase):\n# pjit(lambda x: x, p, p)([x, x, x]) # Error, but make sure we hint at singleton tuple\nerror = re.escape(\n- \"pytree structure error...
Python
Apache License 2.0
google/jax
update pjit test
260,499
22.01.2023 21:33:09
0
73ed511d3945246467b0e3e12da326d40a3fe153
Adding info to CG and BICGSTAB
[ { "change_type": "MODIFY", "old_path": "jax/_src/scipy/sparse/linalg.py", "new_path": "jax/_src/scipy/sparse/linalg.py", "diff": "@@ -133,9 +133,9 @@ def _cg_solve(A, b, x0=None, *, maxiter, tol=1e-5, atol=0.0, M=_identity):\ngamma0 = _vdot_real_tree(r0, z0).astype(dtype)\ninitial_value = (x0, r0, g...
Python
Apache License 2.0
google/jax
Adding info to CG and BICGSTAB
260,311
23.01.2023 08:16:45
28,800
13e875f8b8d8dd9152045c7e3b5045a9bb0d7db0
benchmarks: add math unary benchmarks These will be used for benchmarking FP approximations in XLA.
[ { "change_type": "ADD", "old_path": null, "new_path": "benchmarks/math_benchmark.py", "diff": "+# Copyright 2023 The JAX Authors.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may obtain a copy o...
Python
Apache License 2.0
google/jax
benchmarks: add math unary benchmarks These will be used for benchmarking FP approximations in XLA. PiperOrigin-RevId: 503991586
260,539
23.01.2023 14:38:34
28,800
3c3a2eea5089c922e70d8fbc807231768b7d0be3
Removing HLO dump from docstring, using assert(re.search(...))
[ { "change_type": "MODIFY", "old_path": "jax/experimental/custom_partitioning.py", "new_path": "jax/experimental/custom_partitioning.py", "diff": "@@ -186,8 +186,12 @@ class custom_partitioning:\nfrom jax.sharding import PartitionSpec as P\nfrom jax.experimental.maps import Mesh\nfrom jax.numpy.fft i...
Python
Apache License 2.0
google/jax
Removing HLO dump from docstring, using assert(re.search(...))
260,424
24.01.2023 06:44:51
28,800
7064be1a769a3c3cbcf4ada2504e08796e06ae28
Skip unneccessary unflattening of avals in pjit lowering path. The avals get flattened again when calling `from_flat_info` (here: https://github.com/google/jax/blob/1641c8f1415a837f6f6c2537110f4be698621055/jax/_src/stages.py#L347), so skip unflattening here.
[ { "change_type": "MODIFY", "old_path": "jax/_src/pjit.py", "new_path": "jax/_src/pjit.py", "diff": "@@ -266,13 +266,12 @@ def post_infer_params(fun, infer_params_fn, static_argnums, static_argnames,\nif kwargs:\nargs_kwargs_in_tree = in_tree\n- local_in_avals = in_tree.unflatten(flat_local_in_avals)...
Python
Apache License 2.0
google/jax
Skip unneccessary unflattening of avals in pjit lowering path. The avals get flattened again when calling `from_flat_info` (here: https://github.com/google/jax/blob/1641c8f1415a837f6f6c2537110f4be698621055/jax/_src/stages.py#L347), so skip unflattening here. PiperOrigin-RevId: 504260643
260,447
24.01.2023 11:46:15
28,800
5aea7d95e0a23e046c3d90b903d34cf8d034a0d4
[sparse] Add function that fixes out-of-bound indices.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/sparse/bcoo.py", "new_path": "jax/experimental/sparse/bcoo.py", "diff": "@@ -1508,6 +1508,23 @@ def _unique_indices_unbatched(indices, *, shape, return_inverse=False,\nout = (*out[:-1], nse)\nreturn out\n+def _fix_oob_indices_unbatched(data, i...
Python
Apache License 2.0
google/jax
[sparse] Add function that fixes out-of-bound indices. PiperOrigin-RevId: 504335149
260,539
24.01.2023 15:55:17
28,800
df89c77b0620312040bb41692b29e8bbe7880671
Fix trailing whiteshape + failing doc test + removing first section title
[ { "change_type": "MODIFY", "old_path": "jax/experimental/custom_partitioning.py", "new_path": "jax/experimental/custom_partitioning.py", "diff": "@@ -130,9 +130,6 @@ def _default_propagate_user_shardings(sharding, shape):\nclass custom_partitioning:\n\"\"\"Inserts a CustomCallOp into the XLA graph w...
Python
Apache License 2.0
google/jax
Fix trailing whiteshape + failing doc test + removing first section title
260,424
24.01.2023 19:35:14
0
641b61b164d4bc44b73009240ab3c868905b28f4
Checkify: Validate format arguments to make sure they're arrays
[ { "change_type": "MODIFY", "old_path": "jax/_src/checkify.py", "new_path": "jax/_src/checkify.py", "diff": "@@ -1117,6 +1117,11 @@ def _check(pred, msg, debug, *fmt_args, **fmt_kwargs):\nif not is_scalar_pred(pred):\nprim_name = 'debug_check' if debug else 'check'\nraise TypeError(f'{prim_name} take...
Python
Apache License 2.0
google/jax
Checkify: Validate format arguments to make sure they're arrays
260,631
25.01.2023 09:12:17
28,800
d14e144651fff7cd0e736949ddb461f71cfa0785
Use pareto optimal step size for computing numerical Jacobians in JAX. This allows us to tighten the tolerances in gradient unit testing significantly, especially for float64 and complex128.
[ { "change_type": "MODIFY", "old_path": "jax/_src/public_test_util.py", "new_path": "jax/_src/public_test_util.py", "diff": "@@ -16,7 +16,7 @@ from functools import partial\nimport operator\nfrom jax import config\n-from jax.tree_util import tree_map, tree_reduce\n+from jax.tree_util import tree_map,...
Python
Apache License 2.0
google/jax
Use pareto optimal step size for computing numerical Jacobians in JAX. This allows us to tighten the tolerances in gradient unit testing significantly, especially for float64 and complex128. PiperOrigin-RevId: 504579516
260,631
25.01.2023 09:50:56
28,800
e6e513a6e961449d7ebe01242fa28cfc8477c62e
Add environment variable check in additional to libtpu check for cloud tpu vm
[ { "change_type": "MODIFY", "old_path": "jax/_src/cloud_tpu_init.py", "new_path": "jax/_src/cloud_tpu_init.py", "diff": "@@ -16,6 +16,25 @@ import os\nrunning_in_cloud_tpu_vm = False\n+\n+def maybe_import_libtpu():\n+ try:\n+ # pylint: disable=import-outside-toplevel\n+ # pytype: disable=import-error...
Python
Apache License 2.0
google/jax
Add environment variable check in additional to libtpu check for cloud tpu vm PiperOrigin-RevId: 504588621
260,631
25.01.2023 12:15:00
28,800
78599e65d11a418bd81c7763a3d4fdab960c7bc0
Roll-back due to downstream test failures
[ { "change_type": "MODIFY", "old_path": "jax/_src/public_test_util.py", "new_path": "jax/_src/public_test_util.py", "diff": "@@ -16,7 +16,7 @@ from functools import partial\nimport operator\nfrom jax import config\n-from jax.tree_util import tree_map, tree_reduce, tree_leaves\n+from jax.tree_util imp...
Python
Apache License 2.0
google/jax
Roll-back https://github.com/google/jax/pull/14144 due to downstream test failures PiperOrigin-RevId: 504628432
260,276
26.01.2023 23:01:06
0
96707f09b1304e909a4031cb841e4a66b967bd8f
Removed deprecated polar_unitary as per comment.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -7,6 +7,9 @@ Remember to align the itemized text with the first line of an item within a list\n-->\n## jax 0.4.3\n+ * Breaking changes\n+ * Deleted {func}`jax.scipy.linalg.polar_unitary`, which was a depre...
Python
Apache License 2.0
google/jax
Removed deprecated polar_unitary as per comment.
260,473
01.02.2023 00:06:48
0
278ff25ae1d9e1397547170081f490a88b6ff77c
Update docs that jax.debug is unsupported on Cloud TPUs
[ { "change_type": "MODIFY", "old_path": "docs/debugging/print_breakpoint.md", "new_path": "docs/debugging/print_breakpoint.md", "diff": "@@ -223,6 +223,7 @@ Furthermore, when using `jax.debug.print` with `jax.pjit`, a global synchronizat\n#### Limitations\n* Adding print statements is a manual proces...
Python
Apache License 2.0
google/jax
Update docs that jax.debug is unsupported on Cloud TPUs
260,335
01.02.2023 10:19:47
28,800
684846bd0fb01af64a168d0209a110ebca941a67
checkify: cache jaxpr formation so we don't always retrace
[ { "change_type": "MODIFY", "old_path": "jax/_src/checkify.py", "new_path": "jax/_src/checkify.py", "diff": "@@ -31,7 +31,7 @@ from jax._src.lax import control_flow as cf\nfrom jax._src.sharding import OpShardingSharding\nfrom jax._src.typing import Array\nfrom jax._src.util import (as_hashable_funct...
Python
Apache License 2.0
google/jax
checkify: cache jaxpr formation so we don't always retrace
260,310
01.02.2023 14:30:35
28,800
0cd3dee349473a9d167cf1a816fb00ed933f47f0
Consolidate the experimental_get_compiler_ir eager and tf function path in jax2tf.call_tf.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/jax2tf/call_tf.py", "new_path": "jax/experimental/jax2tf/call_tf.py", "diff": "@@ -352,24 +352,13 @@ def _code_generator_and_avals(\nelse:\ncaptured_inputs.append(inp)\n- # TODO(b/265073174): Currently TensorSpec get_compiler_ir does not suppo...
Python
Apache License 2.0
google/jax
Consolidate the experimental_get_compiler_ir eager and tf function path in jax2tf.call_tf. PiperOrigin-RevId: 506424270
260,335
01.02.2023 20:17:28
28,800
cd615b6be8c0c80fcbfff3d8503fc0ce17f78c93
skip custom_jvp/vjp tests which dont work with initial-style staging These tests, involving nondiff_argnums and/or closing over tracers, happen to work with final-style JIT but not our initial-style primitives. We shouldn't support this behavior anyway; there are good alternatives.
[ { "change_type": "MODIFY", "old_path": "tests/api_test.py", "new_path": "tests/api_test.py", "diff": "@@ -6511,6 +6511,16 @@ class CustomJVPTest(jtu.JaxTestCase):\nself.assertAllClose(ans, expected, check_dtypes=False)\ndef test_nondiff_arg_jit_tracer(self):\n+ # This test would pass with \"final-st...
Python
Apache License 2.0
google/jax
skip custom_jvp/vjp tests which dont work with initial-style staging These tests, involving nondiff_argnums and/or closing over tracers, happen to work with final-style JIT but not our initial-style primitives. We shouldn't support this behavior anyway; there are good alternatives.
260,335
02.02.2023 20:24:26
28,800
644d3b650f0f1dcc19492cff6c1cddbad700dc0d
minor tweaks to type annotations, specialize code on those types I noticed some slightly-too-general type annotations in core.py. By tightening them we could simplify the code too. (I think these were leftovers from pre-omnistaging...)
[ { "change_type": "MODIFY", "old_path": "jax/_src/core.py", "new_path": "jax/_src/core.py", "diff": "@@ -1139,7 +1139,7 @@ def find_top_trace(xs) -> Trace:\ndynamic = thread_local_state.trace_state.trace_stack.dynamic\ntop_main = (dynamic if top_main is None or dynamic.level > top_main.level\nelse to...
Python
Apache License 2.0
google/jax
minor tweaks to type annotations, specialize code on those types I noticed some slightly-too-general type annotations in core.py. By tightening them we could simplify the code too. (I think these were leftovers from pre-omnistaging...)
260,411
03.02.2023 11:25:27
-7,200
f147e82fa7d0956f87ae011ccd3f3c4f83c679d1
[shape_poly] Add support for evaluating div/mod for DimExpr We have added the ability to represent floordiv and mod to DimExper. Here we add support for evaluating these dimensions for the native lowering.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/jax2tf/shape_poly.py", "new_path": "jax/experimental/jax2tf/shape_poly.py", "diff": "@@ -56,7 +56,7 @@ TfVal = Any\n# A dimension environment maps dimension variables to expressions that\n# compute the values of the dimension. An expression mu...
Python
Apache License 2.0
google/jax
[shape_poly] Add support for evaluating div/mod for DimExpr We have added the ability to represent floordiv and mod to DimExper. Here we add support for evaluating these dimensions for the native lowering.
260,411
04.02.2023 08:30:44
-7,200
15be538ebe0196ddde907e60ef114dd9ad4c9ab4
[shape_poly] Fix the hashing and equality of symbolic dimensions
[ { "change_type": "MODIFY", "old_path": "jax/_src/numpy/lax_numpy.py", "new_path": "jax/_src/numpy/lax_numpy.py", "diff": "@@ -3209,7 +3209,10 @@ def _einsum(operands: Sequence,\nassert jax.config.jax_dynamic_shapes or _all(\nname in lhs_names and name in rhs_names and\nlhs.shape[lhs_names.index(name...
Python
Apache License 2.0
google/jax
[shape_poly] Fix the hashing and equality of symbolic dimensions
260,510
03.02.2023 22:51:28
28,800
c231171fb6616bdd88175460ab19701bfac8a80e
Fix checkify caching with nested call primitives
[ { "change_type": "MODIFY", "old_path": "jax/_src/checkify.py", "new_path": "jax/_src/checkify.py", "diff": "@@ -351,9 +351,8 @@ def default_checkify_rule(primitive: core.Primitive, error: Error,\n# call_jaxpr handling\ncall_jaxpr = params.pop('call_jaxpr')\n- partial_checkify = lu.wrap_init(\n- func...
Python
Apache License 2.0
google/jax
Fix checkify caching with nested call primitives
260,335
06.02.2023 12:51:01
28,800
6db3f4865613420a2fa9a6ddb691b9ceff08e78d
[shard_map] add rep rule for axis_index, trivial test
[ { "change_type": "MODIFY", "old_path": "jax/experimental/shard_map.py", "new_path": "jax/experimental/shard_map.py", "diff": "@@ -669,6 +669,11 @@ def _all_to_all_rule(_, in_rep, *, split_axis, concat_axis, axis_name,\nif axis_index_groups is not None: raise NotImplementedError\nreturn in_rep - {axi...
Python
Apache License 2.0
google/jax
[shard_map] add rep rule for axis_index, trivial test
260,335
06.02.2023 17:45:24
28,800
198bfe3df9c9766c7158f31b3b6d7f814ebcadf5
[shard_map] add a lot of trivial rules
[ { "change_type": "MODIFY", "old_path": "jax/experimental/shard_map.py", "new_path": "jax/experimental/shard_map.py", "diff": "@@ -16,6 +16,7 @@ from __future__ import annotations\nimport enum\nfrom functools import partial, lru_cache\nimport inspect\n+import itertools as it\nimport operator as op\nf...
Python
Apache License 2.0
google/jax
[shard_map] add a lot of trivial rules
260,453
07.02.2023 12:07:00
18,000
82519570256e8ecfb46e664a435b4c01227c6f50
Added scipy.stats.rankdata
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -11,6 +11,9 @@ Remember to align the itemized text with the first line of an item within a list\n* Deleted {func}`jax.scipy.linalg.polar_unitary`, which was a deprecated JAX\nextension to the scipy API. Us...
Python
Apache License 2.0
google/jax
Added scipy.stats.rankdata
260,294
07.02.2023 20:07:38
0
01a10a1d06f45de030195175b1f2e03fad6eaf9c
[ROCm] Re-enable some linalg and sparse tests
[ { "change_type": "MODIFY", "old_path": "tests/linalg_test.py", "new_path": "tests/linalg_test.py", "diff": "@@ -523,7 +523,6 @@ class NumpyLinalgTest(jtu.JaxTestCase):\ndtype=float_types + complex_types,\ncompute_uv=[False, True],\n)\n- @jtu.skip_on_devices(\"rocm\") # will be fixed in ROCm-5.1\n@ja...
Python
Apache License 2.0
google/jax
[ROCm] Re-enable some linalg and sparse tests
260,335
08.02.2023 11:12:50
28,800
58d3f552d73a86bacc0d37db504f6c4299fab213
[shard-map] add remat support, very basic test
[ { "change_type": "MODIFY", "old_path": "jax/experimental/shard_map.py", "new_path": "jax/experimental/shard_map.py", "diff": "@@ -908,6 +908,39 @@ def _shard_map_axis_subst(params, subst, traverse):\nreturn dict(params, jaxpr=new_jaxpr)\ncore.axis_substitution_rules[shard_map_p] = _shard_map_axis_su...
Python
Apache License 2.0
google/jax
[shard-map] add remat support, very basic test
260,631
08.02.2023 12:30:55
28,800
1254d44dbdd74e0171e87a2fe2bc8d6d8c6a308d
Remove silent data corruption runtime flags from persistent cache key. These flags have no effect on the compiled executable, just the runtime execution.
[ { "change_type": "MODIFY", "old_path": "jax/experimental/compilation_cache/compilation_cache.py", "new_path": "jax/experimental/compilation_cache/compilation_cache.py", "diff": "@@ -213,6 +213,8 @@ _xla_flags_to_exclude_from_cache_key = [\n\"--xla_force_host_platform_device_count\",\n\"--xla_dump_di...
Python
Apache License 2.0
google/jax
Remove silent data corruption runtime flags from persistent cache key. These flags have no effect on the compiled executable, just the runtime execution. PiperOrigin-RevId: 508152877
260,335
08.02.2023 15:42:35
28,800
1a03f343834d27d86682d7e3c617cd8e6f977514
[shard-map] if check_rep=False, don't call rep rules in eager
[ { "change_type": "MODIFY", "old_path": "jax/experimental/shard_map.py", "new_path": "jax/experimental/shard_map.py", "diff": "@@ -491,7 +491,7 @@ def _shard_map_impl(trace, prim, fun, args, *, mesh, in_names, out_names_thunk,\ndel prim\nargs = map(partial(_unmatch_spec, mesh), in_names, args)\nin_re...
Python
Apache License 2.0
google/jax
[shard-map] if check_rep=False, don't call rep rules in eager
260,335
08.02.2023 23:31:07
28,800
6fb3ace5d0aa426408a09880e4f8a576c39a7add
[shard-map] add vmap spmd_axis_name support, fix vmap rule bug
[ { "change_type": "MODIFY", "old_path": "jax/experimental/shard_map.py", "new_path": "jax/experimental/shard_map.py", "diff": "@@ -371,7 +371,8 @@ def _shard_map_staging(\nwith core.extend_axis_env_nd(mesh.shape.items()):\njaxpr = pe.convert_constvars_jaxpr(jaxpr)\nparams = dict(mesh=mesh, in_names=i...
Python
Apache License 2.0
google/jax
[shard-map] add vmap spmd_axis_name support, fix vmap rule bug
260,294
07.02.2023 18:50:36
0
023226e181d2dcafa018f7ba8ed846d93f7f0774
[ROCm]: Move dockerfile to ROCm5.4
[ { "change_type": "MODIFY", "old_path": "build/rocm/Dockerfile.rocm", "new_path": "build/rocm/Dockerfile.rocm", "diff": "FROM ubuntu:focal\n-MAINTAINER Reza Rahimi <reza.rahimi@amd.com>\n+MAINTAINER Rahul Batra<rahbatra@amd.com>\n-ARG ROCM_DEB_REPO=http://repo.radeon.com/rocm/apt/5.3/\n+ARG ROCM_DEB_...
Python
Apache License 2.0
google/jax
[ROCm]: Move dockerfile to ROCm5.4
260,294
09.02.2023 20:18:00
0
7d0d9b706eceb89ab18ccd33c93ffb5cc788f504
[ROCm]: Re-enable Dirichlet Tests on ROCm
[ { "change_type": "MODIFY", "old_path": "tests/random_test.py", "new_path": "tests/random_test.py", "diff": "@@ -861,7 +861,7 @@ class LaxRandomTest(jtu.JaxTestCase):\nalpha=[np.array([0.2, 1., 5.]),],\ndtype=jtu.dtypes.floating,\n)\n- @jtu.skip_on_devices(\"tpu\",\"rocm\") # TODO(mattjj): slow compi...
Python
Apache License 2.0
google/jax
[ROCm]: Re-enable Dirichlet Tests on ROCm
260,335
09.02.2023 11:02:24
28,800
a964dc3b9a7e8c26fe979e00b782f79ba824f042
simpler pretty-print for pjit, tweak custom pp rule signature
[ { "change_type": "MODIFY", "old_path": "docs/jaxpr.rst", "new_path": "docs/jaxpr.rst", "diff": "@@ -416,10 +416,6 @@ which the computation should run. For example\n{ lambda ; a:f32[]. let\nb:f32[] = sub a 2.0\nc:f32[1] = pjit[\n- donated_invars=(False, False)\n- in_positional_semantics=(<_Positional...
Python
Apache License 2.0
google/jax
simpler pretty-print for pjit, tweak custom pp rule signature
260,542
09.02.2023 14:33:05
28,800
668b82d529e2649f1dbf7cdf9ec8d934fda09a19
[PJRT C API] Register a backend factory for every PJRT plugin set in PJRT_NAMES_AND_LIBRARY_PATHS. Loading TPU PJRT plugin is moved to make_tpu_client. This change is based on
[ { "change_type": "MODIFY", "old_path": "jax/_src/lib/xla_bridge.py", "new_path": "jax/_src/lib/xla_bridge.py", "diff": "@@ -254,6 +254,71 @@ if hasattr(xla_client, \"make_plugin_device_client\"):\nregister_backend_factory(\"plugin\", xla_client.make_plugin_device_client,\npriority=400)\n+\n+def _get...
Python
Apache License 2.0
google/jax
[PJRT C API] Register a backend factory for every PJRT plugin set in PJRT_NAMES_AND_LIBRARY_PATHS. Loading TPU PJRT plugin is moved to make_tpu_client. This change is based on https://github.com/google/jax/pull/14011. PiperOrigin-RevId: 508477737
287,654
09.01.2017 10:42:41
28,800
b41be2b74d5990891b6f3bac9b16be55760e7df2
Remove compact call on Array and Set in sanitizer.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -64,6 +64,10 @@ adheres to [Semantic Versioning](http://semver.org/).\n- The deprecated `Honeybadger::Rack::MetricsReporter` middleware has been\nremoved.\n+### Fixed\n+- Arrays are no longer compacted dur...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Remove compact call on Array and Set in sanitizer.
287,654
09.01.2017 10:54:44
28,800
05c54c6e3545c2f6170c8728bf33f41998f9058b
Release 3.0.0.beta3
[ { "change_type": "MODIFY", "old_path": "gemfiles/binding_of_caller.gemfile", "new_path": "gemfiles/binding_of_caller.gemfile", "diff": "@@ -7,7 +7,6 @@ gem \"appraisal\", \"~> 2.1\"\ngem \"aruba\", \"~> 0.14\"\ngem \"guard\"\ngem \"guard-rspec\"\n-gem \"listen\", \"~> 3.0.8\"\ngem \"pry\"\ngem \"pry...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Release 3.0.0.beta3
287,654
16.01.2017 09:00:03
28,800
8fdf1d1c57ae0755eb4a055b3d68826692c16536
Update allocation_stats traceer.
[ { "change_type": "MODIFY", "old_path": "tools/allocation_stats.rb", "new_path": "tools/allocation_stats.rb", "diff": "@@ -10,15 +10,18 @@ group_by = if ENV['GROUP']\nputs Benchmark.measure {\nstats = AllocationStats.trace do\n- if Honeybadger.start({:api_key => 'badgers', :backend => 'null'})\n+ Hon...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Update allocation_stats traceer.
287,654
16.01.2017 09:00:38
28,800
45e1919273b0c519a9bb3d1cd62404aff229f477
Allocate fewer arrays when fetching config values.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/config.rb", "new_path": "lib/honeybadger/config.rb", "diff": "@@ -31,6 +31,8 @@ module Honeybadger\nNOT_BLANK = Regexp.new('\\S').freeze\n+ IVARS = [:@ruby, :@env, :@yaml, :@framework].freeze\n+\ndef initialize(opts = {})\n@ruby = opts.freeze\n...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Allocate fewer arrays when fetching config values.
287,654
16.01.2017 09:27:21
28,800
2a311e6a72ec357298648363ed0433be214106a0
Allocate fewer arrays in backtrace.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/backtrace.rb", "new_path": "lib/honeybadger/backtrace.rb", "diff": "@@ -37,8 +37,11 @@ module Honeybadger\nend\nif filtered_line\n- _, file, number, method = unparsed_line.match(INPUT_FORMAT).to_a\n- _, *filtered_args = filtered_line.match(INPU...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Allocate fewer arrays in backtrace.
287,654
16.01.2017 10:30:30
28,800
874b0726b203187dd4a0b44a97ab7918cf8af7fe
Add tests for deploy and exec cli commands.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/deploy.rb", "new_path": "lib/honeybadger/cli/deploy.rb", "diff": "@@ -22,9 +22,8 @@ module Honeybadger\nlocal_username: options['user']\n}\n- http = Util::HTTP.new(config)\n- result = http.post('/v1/deploys', payload)\n- if result.code == '...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add tests for deploy and exec cli commands.
287,654
16.01.2017 10:30:43
28,800
15b33c24f68a71bb0e5482e7773085879f8f9bf1
Add pwd to honeybadger exec context.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/exec.rb", "new_path": "lib/honeybadger/cli/exec.rb", "diff": "@@ -63,7 +63,8 @@ MSG\ncontext: {\nexecutable: args.first,\ncode: result.code,\n- pid: result.pid\n+ pid: result.pid,\n+ pwd: Dir.pwd\n}\n},\nserver: {\n" } ]
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add pwd to honeybadger exec context.
287,654
16.01.2017 10:44:42
28,800
918d97cb4e834a2fae985ff5bc285464ae124a24
Add some extra context to honeybadger exec
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/exec.rb", "new_path": "lib/honeybadger/cli/exec.rb", "diff": "@@ -52,6 +52,7 @@ MSG\nresult = exec_cmd\nreturn if result.success\n+ executable = args.first.to_s[/\\S+/]\npayload = {\napi_key: config.get(:api_key),\nnotifier: NOTIFIER,\n@@ -...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add some extra context to honeybadger exec
287,654
16.01.2017 14:21:16
28,800
1c1c7caea88d8a90d0f9e6da7290572d7a24c497
Delegate to full constant.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/singleton.rb", "new_path": "lib/honeybadger/singleton.rb", "diff": "@@ -8,7 +8,7 @@ module Honeybadger\nextend Forwardable\nextend self\n- def_delegators :'Agent.instance', :init!, :config, :configure,\n+ def_delegators :'Honeybadger::Agent.ins...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Delegate to full constant.
287,654
16.01.2017 18:07:06
28,800
347736b24b3f2f759b0f4adb947a03773f15047c
Don't test Ruby 2.4.0/Rails 4.x See
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -42,6 +42,12 @@ matrix:\ngemfile: gemfiles/rack.gemfile\n- rvm: 2.1.10\ngemfile: gemfiles/sinatra.gemfile\n+ - rvm: 2.4.0\n+ gemfile: gemfiles/rails4.0.gemfile\n+ - rvm: 2.4.0\n+ gemfile: gemfiles/rails4.1.g...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Don't test Ruby 2.4.0/Rails 4.x See https://github.com/rails/rails/issues/25125
287,654
16.01.2017 18:36:10
28,800
822937ac24a2f5ff4a8be3e2b68669711452899d
Remove forced encoding for invalid UTF8 This doesn't seem to do anything except blow up JRuby and was originally added for Ruby 1.9 which is no longer supported.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/util/sanitizer.rb", "new_path": "lib/honeybadger/util/sanitizer.rb", "diff": "@@ -151,13 +151,8 @@ module Honeybadger\ndef valid_encoding(string)\nreturn string if valid_encoding?(string)\n-\n- if string.encoding == Encoding::UTF_8\n- string.en...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Remove forced encoding for invalid UTF8 This doesn't seem to do anything except blow up JRuby and was originally added for Ruby 1.9 which is no longer supported.
287,654
16.01.2017 18:47:05
28,800
254e85e861aaf1c9eede3f9bf013ac3742e4a981
Remove extra Ruby 2.3 and allow Rails-head failures.
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -23,7 +23,6 @@ gemfile:\nrvm:\n- 2.1.10\n- 2.2.5\n- - 2.3.1\n- 2.3.3\n- 2.4.0\n- jruby-9.1.4.0\n@@ -32,7 +31,11 @@ matrix:\nallow_failures:\n- rvm: 2.2.5\ngemfile: gemfiles/rails.gemfile\n- - rvm: 2.3.1\n+ -...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Remove extra Ruby 2.3 and allow Rails-head failures.
287,654
16.01.2017 18:50:04
28,800
f370ba9750880c449eaf12f0e7de86bba0ddb15c
Bump Ruby 2.2 version.
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -22,14 +22,14 @@ gemfile:\n- gemfiles/rails5.0.gemfile\nrvm:\n- 2.1.10\n- - 2.2.5\n+ - 2.2.6\n- 2.3.3\n- 2.4.0\n- jruby-9.1.4.0\nmatrix:\nfast_finish: true\nallow_failures:\n- - rvm: 2.2.5\n+ - rvm: 2.2.6\ng...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Bump Ruby 2.2 version.
287,654
16.01.2017 18:55:38
28,800
716c55d0df0919e9c8cded74609fe7bdf4a4a96b
Exclude binding_of_caller tests on JRuby.
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -52,6 +52,8 @@ matrix:\ngemfile: gemfiles/rails4.1.gemfile\n- rvm: 2.4.0\ngemfile: gemfiles/rails4.2.gemfile\n+ - rvm: jruby-9.1.4.0\n+ gemfile: gemfiles/binding_of_caller.gemfile\nenv:\nglobal:\nsecure: DwQ...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Exclude binding_of_caller tests on JRuby.
287,654
19.01.2017 11:18:09
28,800
66a3c0130a12beca08d219d8c458daf2c11e450f
Don't require rails in aruba tests. Blows up JRuby with an encoding error, and I don't think there was a reason to require it anyway.
[ { "change_type": "MODIFY", "old_path": "spec/features/install_spec.rb", "new_path": "spec/features/install_spec.rb", "diff": "require 'honeybadger/config'\nrequire 'pathname'\n-begin\n- require 'rails'\n-rescue LoadError\n- nil\n-end\n-\nfeature \"Installing honeybadger via the cli\" do\nshared_exam...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Don't require rails in aruba tests. Blows up JRuby with an encoding error, and I don't think there was a reason to require it anyway.
287,654
19.01.2017 12:29:35
28,800
ffd6a6095d3f68f554c47ee69599fd0a4999ee10
Add JRuby 9 to README.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -12,7 +12,7 @@ When an uncaught exception occurs, Honeybadger will POST the relevant data to th\n| Ruby Interpreter | Supported Version |\n| ---- | ---- |\n| MRI | >= 2.1.0 |\n-| Rubinius | >= 2.0 |\n+| JRuby | ...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add JRuby 9 to README.
287,654
23.01.2017 12:38:25
28,800
85e2513635fa3dcf69f1f1e49b75b3c48cc23db5
Detect and send git revision with errors.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -28,6 +28,8 @@ adheres to [Semantic Versioning](http://semver.org/).\n- `Honeybadger.notify` now converts arguments which are not `Exception` or\n`Hash` types to strings and assigns them as the error messa...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Detect and send git revision with errors.
287,654
24.01.2017 13:51:30
28,800
f232e42620ee62093147ede1794502e9b134fc59
Delete ping.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/backend/server.rb", "new_path": "lib/honeybadger/backend/server.rb", "diff": "@@ -10,7 +10,6 @@ module Honeybadger\nmodule Backend\nclass Server < Base\nENDPOINTS = {\n- ping: '/v1/ping'.freeze,\nnotices: '/v1/notices'.freeze,\ndeploys: '/v1/de...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Delete ping.
287,654
24.01.2017 13:58:05
28,800
9b764e5129b099bdc25624159add7b626a806b7a
Add comment about Config#init!
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/config.rb", "new_path": "lib/honeybadger/config.rb", "diff": "@@ -13,6 +13,7 @@ require 'honeybadger/util/revision'\nrequire 'honeybadger/logging'\nmodule Honeybadger\n+ # Internal\nclass Config\nextend Forwardable\n@@ -43,6 +44,9 @@ module Hon...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add comment about Config#init!
287,654
24.01.2017 14:03:37
28,800
fb54b4eb35507a00b46028e24cfb2f8cc9409669
Require argument to honeybadger exec.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/main.rb", "new_path": "lib/honeybadger/cli/main.rb", "diff": "@@ -109,10 +109,15 @@ WELCOME\nproject_options\noption :quiet, required: false, type: :boolean, aliases: :'-q', default: false, desc: 'Suppress all output unless notification fai...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Require argument to honeybadger exec.
287,654
30.01.2017 17:49:22
28,800
a3a9b2b9b761929d29c4bff33b21c2ad639f3f0c
Add support for reporting Resque::DirtyExit exceptions.
[ { "change_type": "MODIFY", "old_path": "Appraisals", "new_path": "Appraisals", "diff": "@@ -21,6 +21,11 @@ appraise 'delayed_job' do\ngem 'delayed_job', '< 4.1.2' # See https://github.com/collectiveidea/delayed_job/pull/931\nend\n+appraise 'resque' do\n+ gem 'resque'\n+ gem 'mock_redis'\n+end\n+\nap...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add support for reporting Resque::DirtyExit exceptions.
287,654
31.01.2017 09:12:17
28,800
82c207a1d4c4a893a0a51c3b9319bb74e1119fe2
Bump max string size to 64K.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/util/sanitizer.rb", "new_path": "lib/honeybadger/util/sanitizer.rb", "diff": "@@ -16,7 +16,7 @@ module Honeybadger\nIMMUTABLE = [NilClass, FalseClass, TrueClass, Symbol, Numeric, BigDecimal, Method].freeze\n- MAX_STRING_SIZE = 2048\n+ MAX_STRIN...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Bump max string size to 64K.
287,654
31.01.2017 09:44:21
28,800
46d914ea1e537d066daeed6b1a4fd67ece199d91
Add Shoryuken to list of supported queues.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -36,6 +36,7 @@ Integrating with other libraries/frameworks is simple! [See the documentation](h\n| Resque | any | yes |\n| Delayed Job | any | yes |\n| Sucker Punch | any | yes |\n+| Shoryuken | any | yes |\nYou...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add Shoryuken to list of supported queues.
287,654
31.01.2017 10:18:56
28,800
d6b58dbd2777a65f995033af2c638104883ae561
List other integrations in README.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -30,7 +30,7 @@ Integrating with other libraries/frameworks is simple! [See the documentation](h\n## Supported job queues\n-| Framework | Version | Native? |\n+| Library | Version | Native? |\n| ------------- | -...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
List other integrations in README.
287,654
06.02.2017 06:10:42
28,800
eeef51691001298d3d569165aafe4c484f08314c
Add Resque change to CHANGELOG.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -69,6 +69,7 @@ adheres to [Semantic Versioning](http://semver.org/).\n### Fixed\n- Arrays are no longer compacted during sanitization (`nil` values will be sent\nas they originally appeared).\n+- Resque pl...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add Resque change to CHANGELOG.
287,654
10.02.2017 11:49:12
28,800
6286efd29111bfeadf24e541aa90340a108f1946
Skip non-string keys in Rack env.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -4,6 +4,9 @@ CHANGELOG](http://keepachangelog.com/) for how to update this file. This project\nadheres to [Semantic Versioning](http://semver.org/).\n## [Unreleased]\n+### Fixed\n+- Fixed a bug which cause...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Skip non-string keys in Rack env. #215
287,654
16.02.2017 08:33:57
28,800
b2ba41ad9fe8e10593d996dc53cd4d127b67eccd
Fix semantic_logger bug.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -4,6 +4,8 @@ CHANGELOG](http://keepachangelog.com/) for how to update this file. This project\nadheres to [Semantic Versioning](http://semver.org/).\n## [Unreleased]\n+### Fixed\n+- Fixed a bug caused by a...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Fix semantic_logger bug. #218
287,654
16.02.2017 09:16:34
28,800
3dc552cc26a135096d4d001a3d416fad71b714a9
Add logging predicates to base.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/logging.rb", "new_path": "lib/honeybadger/logging.rb", "diff": "require 'logger'\nrequire 'singleton'\nrequire 'delegate'\n+require 'forwardable'\nmodule Honeybadger\nmodule Logging\n@@ -47,6 +48,10 @@ module Honeybadger\ndefine_method severity...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add logging predicates to base.
287,654
16.02.2017 09:36:53
28,800
de0ddb054f00be567e875f9204778420d1c7b27b
Initialize sinatra config immediately.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/init/sinatra.rb", "new_path": "lib/honeybadger/init/sinatra.rb", "diff": "@@ -7,28 +7,23 @@ module Honeybadger\n::Sinatra::Base.class_eval do\nclass << self\ndef build_with_honeybadger(*args, &block)\n+ configure_honeybadger\ninstall_honeybadge...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Initialize sinatra config immediately.
287,654
03.03.2017 00:42:14
28,800
1f91ab3ac3c904e7a330d5334cd8f6e7bef5390e
Update config options in README.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -228,7 +228,7 @@ You can use any of the options below in your config file, or in the environment.\n| `config_path` | String | The path of the honeybadger config file. Can only be set via the `$HONEYBADGER_CONFIG...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Update config options in README.
287,654
03.03.2017 00:45:54
28,800
e9b8a6be0b5f1d20a74fbf0e8a802f94c38e5311
Add Honeybadger.configure to readme.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -208,6 +208,17 @@ export HONEYBADGER_LOGGING_PATH=/path/to/honeybadger.log\nENV options override other options read from framework or `honeybadger.yml` sources, so both can be used together.\n+### Configuration ...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add Honeybadger.configure to readme.
287,654
03.03.2017 00:59:51
28,800
1577f821421b97314e69cdf1e3008603f9237073
Document additional public api methods.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -320,6 +320,9 @@ end\n# Clearing global context:\nHoneybadger.context.clear!\n+\n+# Fetching current context\n+Honeybadger.get_context\n```\n---\n@@ -349,6 +352,26 @@ end\n---\n+### `Honeybadger.configure()`: Co...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Document additional public api methods.
287,654
03.03.2017 01:06:14
28,800
a6f468fbd076f0b3b76fabb5faaf29c75b925cc5
Update rubydoc.info link.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -293,7 +293,7 @@ You can use any of the options below in your config file, or in the environment.\n## Public Methods\n-> What follows is a summary of the gem's most commonly-used public methods. For a more autho...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Update rubydoc.info link.
287,654
03.03.2017 01:15:47
28,800
6c920397ada6135361f9fe8aa25f34446e3ae676
Add exec and notify CLI command docs to README.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -499,6 +499,35 @@ bundle exec honeybadger deploy --environment=production\nRun&nbsp; `bundle exec honeybadger help deploy` for all available options.\n+## Cron/command line monitoring\n+\n+`honeybadger exec` can...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add exec and notify CLI command docs to README.
287,654
03.03.2017 01:18:55
28,800
570fb61665045818702c3f810f38f6f4589ca3fd
Add plain ruby setup section.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -139,6 +139,24 @@ use Honeybadger::Rack::ErrorNotifier\nrun app\n```\n+#### Plain Ruby\n+\n+To use Honeybadger without any of the automatic integrations, `require\n+honeybadger/ruby` instead of `require 'honeyba...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add plain ruby setup section.
287,654
03.03.2017 01:22:20
28,800
a2738e0047ca3fa481a338e6e98cdd7dbec00897
Add Honeybadger::Agent documentation to README.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -547,6 +547,27 @@ $ honeybadger notify --message \"This is an error from the command line\"\nFor full usage run `honeybadger help notify`.\n+## Reporting to multiple Honeybadger projects in the same app\n+\n+To ...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add Honeybadger::Agent documentation to README.
287,654
06.03.2017 09:20:12
28,800
eaa8f5f865bc4aeee5b6fc4dfc54e747ddbedaca
Add section on integration testing.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -624,6 +624,81 @@ en:\ncomment: \"Comment (required)\"\n```\n+## Testing Honeybadger in your integration tests\n+\n+It is possible to test Honeybadger's integration with your application using the\n+included tes...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add section on integration testing.
287,654
06.03.2017 11:39:48
28,800
f379247e4a6248a12c44b77fff9ca9a2802bcfec
Use config env in deploy cmd.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -4,6 +4,9 @@ CHANGELOG](http://keepachangelog.com/) for how to update this file. This project\nadheres to [Semantic Versioning](http://semver.org/).\n## [Unreleased]\n+### Fixed\n+- `honeybadger deploy` cl...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Use config env in deploy cmd.
287,654
06.03.2017 12:08:09
28,800
48a8bb286927ede90841af19fe3cfd23f91b9066
Rename configuration heading.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -158,7 +158,7 @@ All of the public API methods are still available, but none of the plugins,\nframework integrations, or hooks are run. You will need to manually set up your\nown middleware and hooks for error m...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Rename configuration heading.
287,654
06.03.2017 12:22:35
28,800
347e59b657b6c94615ede22ae643e003e5371976
Add note about API key in integration test.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -692,12 +692,15 @@ To use the test backend, set the `backend` configuration option to \"test\" in\nhoneybadger.yml for your test environment only:\n```yaml\n+api_key: 'project api key'\ntest:\nbackend: test\n```...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add note about API key in integration test.
287,654
06.03.2017 12:44:34
28,800
74796556a5dcfe1a0b113ed56eac9e8f9e2eaf2f
Rename headings.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -528,7 +528,7 @@ When using the *honeybadger* gem with Bundler, run `bundle exec honeybadger`.\nTo use outside of bundler, install the Honeybadger gem with `gem install\nhoneybadger` and then run `honeybadger`.\...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Rename headings.
287,654
20.04.2017 09:42:42
25,200
721986e09b284e6052d9dc407fbb3b22488ca13a
Notify synchronously in Resque hook This fixes a bug in the Resque plugin which prevented notifications from being sent. The issue was that the Resque's callbacks were executed in an unexpected order which caused the queue to be flushed before error notification instead of after.
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -4,6 +4,11 @@ CHANGELOG](http://keepachangelog.com/) for how to update this file. This project\nadheres to [Semantic Versioning](http://semver.org/).\n## [Unreleased]\n+### Fixed\n+- Fixed a bug in the Res...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Notify synchronously in Resque hook (#224) This fixes a bug in the Resque plugin which prevented notifications from being sent. The issue was that the Resque's callbacks were executed in an unexpected order which caused the queue to be flushed before error notification instead of after.
287,654
21.04.2017 15:46:05
25,200
e11e1b2578b297a62d0dd8317cd5e444517e984c
Update notify documentation.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/agent.rb", "new_path": "lib/honeybadger/agent.rb", "diff": "@@ -70,13 +70,21 @@ module Honeybadger\n# to build the notice. All other types of objects will\n# be converted to a String and used as the `:error_message`.\n# opts - The options Hash ...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Update notify documentation.
287,654
21.04.2017 15:51:04
25,200
4fd82ce75c26a494db7fb0626d4b882e5c081eaa
Tomdoc tweaks.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/agent.rb", "new_path": "lib/honeybadger/agent.rb", "diff": "@@ -19,7 +19,7 @@ module Honeybadger\n# This also includes the Rack environment when using the Honeybadger rack\n# middleware.\n#\n- # Examples:\n+ # Examples\n#\n# # Standard usage:\n...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Tomdoc tweaks.
287,654
28.04.2017 08:46:13
25,200
eca2d53b65b7a9973694a158201d5d6c2c8a309c
Add Rails 5.1 to appraisals.
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -19,6 +19,7 @@ gemfile:\n- gemfiles/rails4.2.gemfile\n- gemfiles/rails.gemfile\n- gemfiles/rails5.0.gemfile\n+ - gemfiles/rails5.1.gemfile\nrvm:\n- 2.1.10\n- 2.2.6\n@@ -41,6 +42,8 @@ matrix:\ngemfile: gemfil...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Add Rails 5.1 to appraisals.
287,654
16.08.2017 11:25:57
25,200
17ab25be86ae49d5cfb27ed722307033a051beae
Remove Logger references to /dev/null
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/test.rb", "new_path": "lib/honeybadger/cli/test.rb", "diff": "@@ -94,9 +94,9 @@ module Honeybadger\n# logging the framework trace (moved to ActionDispatch::DebugExceptions),\n# which caused cluttered output while running the test task.\ndef...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Remove Logger references to /dev/null
287,654
01.09.2017 15:11:01
25,200
5af6f70f12ed9fff5db71642af865985a1cfd206
Support adding context to exceptions. Closes
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "@@ -8,6 +8,9 @@ adheres to [Semantic Versioning](http://semver.org/).\n- The exception cause may now be set using an optional `:cause` option when\ncalling `Honeybadger.notify`. If not present, the exception'...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Support adding context to exceptions. Closes #233 (#236)
287,654
05.09.2017 11:20:52
25,200
0f3a17d08bb30d036ee1ed2d79a8e92f12b0d13f
Update troubleshooting link.
[ { "change_type": "MODIFY", "old_path": "lib/honeybadger/cli/test.rb", "new_path": "lib/honeybadger/cli/test.rb", "diff": "@@ -212,7 +212,7 @@ MSG\nnotices.each {|n| say(\"\\n - #{n.error_class}: #{n.error_message}\", :red) }\nend\n- say(\"\\nSee https://git.io/vXCYp for more troubleshooting help.\\n...
Ruby
MIT License
honeybadger-io/honeybadger-ruby
Update troubleshooting link.