Interoperation with syncthing-android is still very important, but
some have told me that they use syncthing among POSIXish systems
without android as a replacement for rsync/unison, more or less. Keep
the notion of deferring major upgrades to stay in sync with f-droid.
(This is in no way a complaint about the previous minor upgrade, which
was most welcome; it just caused me to look at this and notice my
previous text was too strong.)
CVS: ----------------------------------------------------------------------
CVS: CVSROOT cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
v0.12.19
- Return "No such object in the index" when /rest/db/file gets
called on something that doesn't exist (@calmh)
- Swap the corsMiddleware and the csrfMiddleware to the unauthenticated
OPTIONS requests are first processed. (@letiemble)
- Report versioning usage in usage report (@calmh)
pkgsrc changes:
- Delete NO_CONFIGURE (it is not needed and sometimes can be harmful)
Changes:
The changes since version 1.2 are:
- bugfix: The cover window now resizes correctly when new screens are added or
the resolution is changed while the lock is active.
- new: slock now has a third color. The three colors are used for startup,
typing and failed login attempt.
- new: slock now allows to run any command after the screen has been locked, for
example suspending to ram.
- slock now has a man page.
- a few small fixes and code style updates to make it more consistent with the
rest of the suckless projects.
ok reed@
* pkgsrc change: revive ruby23 support.
## 3.1.7 - 2016-01-17 {#version-3-1-7}
### Fixes
* Added a missing require.
## 3.1.6 - 2016-01-17 {#version-3-1-6}
It's a Ruby on Rails integration improvement release.
### Improvements
* Filtered backtrace of power\_assert.
[GitHub#114]
* Improved performance to retrieve test defined location.
* Improved performance to run fixtures in a test.
* Supported running a test by `yield` in `setup`:
Before:
def setup
@file = File.open("x")
end
def teardown
@file.close
end
After:
def setup
File.open("x") do |file|
@file = file
yield
end
end
* Added `--default-test-path` option that specifies the default path
that has tests.
* Made auto runner registration more lazily. Auto runner isn't
registered automatically until user defines a test. In the
previous releases, auto runner is registered automatically when
user defines a test case.
* Supported specifying a test by location in command line. For
example, the following command line runs a test that is defined in
/tmp/test_a.rb at line 10:
% ruby -r test-unit -e run_test /tmp/test_a.rb:10
### Fixes
* Fixed a bug that test isn't ran. The test has the same name as
data driven test that is defined in parent test case.
[GitHub#115]
### 3.4.2 / 2016-01-26
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)
Bug Fixes:
* Fix `rspec --profile` when an example calls `abort` or `exit`.
(Bradley Schaefer, #2144)
* Fix `--drb` so that when no DRb server is running, it prevents
the DRb connection error from being listed as the cause of all
expectation failures. (Myron Marston, #2156)
* Fix syntax highlighter so that it works when the `coderay` gem is
installed as a rubygem but not already available on your load path
(as happens when you use bundler). (Myron Marston, #2159)
1.3.3
- Fix a bug where a slightly-oversized bulk write operation was not split
into batches; instead, it was sent whole to the server, which rejected it.
1.3.2
- A socket is properly discarded after a network error from a command.
- mongoc_database_get_collection now copies the database's read preferences,
read concern, and write concern, instead of copying the client's.
- mongoc_cursor_t's private struct now allows a negative limit.
1.3.1
- mongoc_client_get_gridfs now copies the client's read preferences, read
concern, and write concern to the newly created mongoc_gridfs_t. Before
this fix, GridFS operations were always executed with the default config:
data was read from the primary, with the read concern level "local", and
written with write concern "acknowledged". Now, if you have configured
any of these options on the mongoc_client_t, they are respected by
the mongoc_gridfs_t.
- CMakeLists.txt now includes and installs the pkg-config files.
1.3.3
- No changes
1.3.2
- man pages couldn't be built from a distribution tarball.
1.3.1
- bson_strnlen is off by one on Windows.
- BSON_HAVE_STRNLEN config check used incorrectly.
- Incompatibility with older CMake versions.
- Wrong-sized allocation in bson_json_reader_new.
* Make PowerAssert::Bug11182,Bug11182Sub private.
* Encoding::CompatibilityError is no longer raised as of ruby 2.3.0.
* Use ruby 2.3 on travis-ci.org.
* Update bundler before travis builds.
* Use ruby 2.3.0 on travis-ci.org.
v0.3.0
Improvements
#7 - refactoring, optimization and major internal cleanup (thanks to
@marshall-lee !)
#5 - optimization in accessor calls (again, thanks to @marshall-lee !)