Skip to content

Commit c219e62

Browse files
committed
Bump version number and document internal changes
1 parent 46f32c0 commit c219e62

File tree

2 files changed

+41
-31
lines changed

2 files changed

+41
-31
lines changed

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: biomaRt
22
Title: Interface to BioMart databases (i.e. Ensembl)
3-
Version: 2.65.0
3+
Version: 2.65.1
44
Authors@R: c(
55
person("Steffen", "Durinck", , "biomartdev@gmail.com", role = "aut"),
66
person("Wolfgang", "Huber", role = "aut"),
@@ -25,9 +25,9 @@ Description: In recent years a wealth of biological data has become
2525
License: Artistic-2.0
2626
URL: https://github.com/Huber-group-EMBL/biomaRt
2727
BugReports: https://github.com/Huber-group-EMBL/biomaRt/issues
28-
Depends:
28+
Depends:
2929
methods
30-
Imports:
30+
Imports:
3131
AnnotationDbi,
3232
BiocFileCache,
3333
curl,
@@ -38,21 +38,21 @@ Imports:
3838
stringr,
3939
utils,
4040
xml2
41-
Suggests:
41+
Suggests:
4242
BiocStyle,
4343
httptest2,
4444
knitr,
4545
mockery,
4646
rmarkdown,
4747
testthat
48-
VignetteBuilder:
48+
VignetteBuilder:
4949
knitr
5050
biocViews: Annotation
5151
Encoding: UTF-8
5252
LazyLoad: yes
5353
NeedsCompilation: no
5454
RoxygenNote: 7.3.0
55-
Collate:
55+
Collate:
5656
'biomaRtClasses.R'
5757
'methods-Mart.R'
5858
'biomaRt.R'

NEWS

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1+
2+
CHANGES IN VERSION 2.66.0
3+
-------------------------
4+
5+
INTERNAL CHANGES
6+
7+
o Coding style throughout the package has been harmonized using the air tool.
8+
Contributors using RStudio, Positron or VS Code should have their code styled
9+
automatically on save.
10+
111
CHANGES IN VERSION 2.64.0
212
-------------------------
313

414
BUG FIXES
515

6-
o Version 1.10 of {httr2} changed how URLs are parsed, and this broke
16+
o Version 1.10 of {httr2} changed how URLs are parsed, and this broke
717
some biomaRt functionality. This has been patched.
818
(Backported to biomaRt 2.62.1)
919

@@ -13,42 +23,42 @@ CHANGES IN VERSION 2.62.0
1323
USER VISIBLE CHANGES
1424

1525
o Several deprecated functions are now defunct.
16-
26+
1727
BUG FIXES
1828

1929
o Results returned from BioMart queries will be read using Latin-1 encounding
2030
if the default fails. Reported in https://support.bioconductor.org/p/9158844/
2131
(Backported to 2.60.1)
2232
o Fixed issue when only one dataset was listed in a Mart instance, causing
23-
data.frame dimensions to be dropped. This broke connectivity to
33+
data.frame dimensions to be dropped. This broke connectivity to
2434
https://parasite.wormbase.org. (Backported to 2.60.1)
25-
35+
2636
CHANGES IN VERSION 2.60.0
2737
-------------------------
2838

2939
USER VISIBLE CHANGES
3040

31-
o listEnsemblGenomes() and useEnsemblGenomes() now have a host argument,
32-
allowing you to select an Ensembl Genomes archive site. (Thanks to Hervé Pagès
41+
o listEnsemblGenomes() and useEnsemblGenomes() now have a host argument,
42+
allowing you to select an Ensembl Genomes archive site. (Thanks to Hervé Pagès
3343
@hpages for the suggestion: https://github.com/grimbough/biomaRt/issues/93)
3444
o The 'curl' argument to getBM() has been deprecated as it is no longer
3545
applicable and doesn't do anything.
36-
46+
3747
INTERNAL CHANGES
3848

3949
o Removed dependency on XML package and switched all functionality to xml2
40-
o Swiched from httr to httr2 package for submitting queries to BioMart
50+
o Swiched from httr to httr2 package for submitting queries to BioMart
4151
servers.
4252

4353
CHANGES IN VERSION 2.58.0
4454
-------------------------
4555

4656
USER VISIBLE CHANGES
4757

48-
o getSequence() will now provide a more informative error message if
58+
o getSequence() will now provide a more informative error message if
4959
requesting a flanking sequence and not provided with an upstream or downstream
5060
range.
51-
o Remove references to the uswest mirror, which has now been retired
61+
o Remove references to the uswest mirror, which has now been retired
5262
(https://www.ensembl.info/2023/01/13/retirement-of-ensembl-us-west-aws-mirror/)
5363

5464
CHANGES IN VERSION 2.56.0
@@ -57,7 +67,7 @@ CHANGES IN VERSION 2.56.0
5767
BUG FIXES
5868

5969
o Fix problem when multiple cache entries with the same ID could
60-
be created. (Thanks to Hervé Pagès & Henrik Bengtsson for independent
70+
be created. (Thanks to Hervé Pagès & Henrik Bengtsson for independent
6171
reports of this issue.)
6272
o bmRequest() will now respect the setting in options("timeout")
6373

@@ -76,7 +86,7 @@ CHANGES IN VERSION 2.50.0
7686

7787
MINOR CHANGES
7888

79-
o useMart() and listMarts() will warn users if using http to access
89+
o useMart() and listMarts() will warn users if using http to access
8090
Ensembl. https will be enforced by Ensembl from late 2021.
8191

8292
BUG FIXES
@@ -105,32 +115,32 @@ BUG FIXES
105115
sequences being returned from a query.
106116
o getBM() would fail if it found a cache entry, but the file was corrupted.
107117
Invalid entries are now detected and deleted if encountered.
108-
118+
109119
CHANGES IN VERSION 2.46.0
110120
-------------------------
111121

112122
BUG FIXES
113123

114124
o getLDS() now detects if trying to use datasets from different Marts
115125
and reports this to the user.
116-
126+
117127

118128
CHANGES IN VERSION 2.42.0
119129
-------------------------
120130

121131
NEW FEATURES
122132

123133
o The results of queries will now be cached, and if repeated queries
124-
are detected the results are loaded from disk.
125-
134+
are detected the results are loaded from disk.
135+
126136
MINOR CHANGES
127137

128-
o Ensembl users will be redirected to their closest mirror unless the
138+
o Ensembl users will be redirected to their closest mirror unless the
129139
host argument is explicitly provided. In this case the defined value
130140
will be enforced.
131141
o Unused argument 'ssl.verifypeer' removed from listMarts() and useMarts().
132142
o RCurl removed from package dependecies.
133-
143+
134144
BUG FIXES
135145

136146
o Improvements made to selecting the correct port when using http
@@ -143,18 +153,18 @@ CHANGES IN VERSION 2.36.0
143153

144154
BUG FIXES
145155

146-
o Patched problem returning the list of available datasets, if the
156+
o Patched problem returning the list of available datasets, if the
147157
description of one or more datasets included an apostrophe (introduced
148158
with new primate species in Ensembl).
149159
o Caught scenario where ensemblRedirect=FALSE was still being ignored.
150-
o Changed query submission when redirection is detected to cope with
160+
o Changed query submission when redirection is detected to cope with
151161
apparently new behaviour of the Ensembl mirrors.
152-
162+
153163
MINOR CHANGES
154164

155165
o Increase query timeout limit to 5 minutes.
156-
157-
166+
167+
158168
CHANGES IN VERSION 2.34.0
159169
-------------------------
160170

@@ -168,9 +178,9 @@ BUG FIXES
168178

169179
o The Ensembl BioMart server doesn't always respond well if queries with
170180
more than 500 filter values are submitted. If a query that exceed this is
171-
detect biomaRt will now submit the query in batches and concatonate the
181+
detect biomaRt will now submit the query in batches and concatonate the
172182
result when completed.
173-
183+
174184
MINOR CHANGES
175185

176186
o You can now provide a host with 'http://' at the start, or a trailing

0 commit comments

Comments
 (0)