Skip to content

Commit 5ac6628

Browse files
authoredSep 23, 2022
Merge pull request #2966 from jgonggrijp/prepare-1.13.5
Prepare 1.13.5
2 parents 7459b8d + bef7ee3 commit 5ac6628

10 files changed

+39
-23
lines changed
 

‎index.html

+26-11
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
<div id="sidebar" class="interface overlay-content">
263263

264264
<a class="toc_title" href="#">
265-
Underscore.js <span class="version">(1.13.4)</span>
265+
Underscore.js <span class="version">(1.13.5)</span>
266266
</a>
267267

268268
<ul class="toc_section">
@@ -551,7 +551,7 @@
551551
<i>Underscore is an open-source component of <a href="https://documentcloud.org/">DocumentCloud</a>.</i>
552552
</p>
553553

554-
<h2>v1.13.4 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and use "Save As")</i></h2>
554+
<h2>v1.13.5 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and use "Save As")</i></h2>
555555

556556
<table>
557557
<tr>
@@ -595,32 +595,32 @@ <h2>v1.13.4 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-clic
595595
</tr>
596596
</table>
597597

598-
<h2>v1.13.4 CDN URLs <i style="padding-left: 12px; font-size:12px;">(Use with <tt>&lt;script src="..."&gt;&lt;/script&gt;</tt>)</i></h2>
598+
<h2>v1.13.5 CDN URLs <i style="padding-left: 12px; font-size:12px;">(Use with <tt>&lt;script src="..."&gt;&lt;/script&gt;</tt>)</i></h2>
599599

600600
<ul>
601601
<li>
602-
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.4/underscore-umd-min.js</tt>
602+
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.5/underscore-umd-min.js</tt>
603603
</li>
604604
<li>
605-
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.4/underscore-esm-min.js</tt>
605+
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.5/underscore-esm-min.js</tt>
606606
</li>
607607
<li>
608-
<tt>https://unpkg.com/underscore@1.13.4/underscore-umd-min.js</tt>
608+
<tt>https://unpkg.com/underscore@1.13.5/underscore-umd-min.js</tt>
609609
</li>
610610
<li>
611-
<tt>https://unpkg.com/underscore@1.13.4/underscore-esm-min.js</tt>
611+
<tt>https://unpkg.com/underscore@1.13.5/underscore-esm-min.js</tt>
612612
</li>
613613
<li>
614-
<tt>https://pagecdn.io/lib/underscore/1.13.4/underscore-umd-min.js</tt>
614+
<tt>https://pagecdn.io/lib/underscore/1.13.5/underscore-umd-min.js</tt>
615615
</li>
616616
<li>
617-
<tt>https://pagecdn.io/lib/underscore/1.13.4/underscore-esm-min.js</tt>
617+
<tt>https://pagecdn.io/lib/underscore/1.13.5/underscore-esm-min.js</tt>
618618
</li>
619619
<li>
620-
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-umd-min.js</tt>
620+
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.5/underscore-umd-min.js</tt>
621621
</li>
622622
<li>
623-
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-esm-min.js</tt>
623+
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.5/underscore-esm-min.js</tt>
624624
</li>
625625
</ul>
626626

@@ -2798,6 +2798,21 @@ <h2 id="notes">Notes</h2>
27982798

27992799
<h2 id="changelog">Change Log</h2>
28002800

2801+
<p id="1.13.5">
2802+
<b class="header">1.13.5</b> &mdash; <small><i>September 23, 2022</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.13.4...1.13.5">Diff</a> &mdash; <a href="https://cdn.statically.io/gh/jashkenas/underscore/1.13.5/index.html">Docs</a><br />
2803+
<ul>
2804+
<li>
2805+
Adds a <tt>module</tt> sub-entry to the package.json&rsquo;s <tt>exports.require</tt> condition. When a bundling tool, such as Rollup with recent versions of <tt>@rollup/plugin-node-resolve</tt>, takes the exports map very literally, this should prevent situations in which the final bundle includes multiple copies of Underscore in different module formats.
2806+
</li>
2807+
<li>
2808+
Updates to the testing infrastructure and development dependencies.
2809+
</li>
2810+
<li>
2811+
No code changes.
2812+
</li>
2813+
</ul>
2814+
</p>
2815+
28012816
<p id="1.13.4">
28022817
<b class="header">1.13.4</b> &mdash; <small><i>June 2, 2022</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.13.3...1.13.4">Diff</a> &mdash; <a href="https://cdn.statically.io/gh/jashkenas/underscore/1.13.4/index.html">Docs</a><br />
28032818
<ul>

‎modules/_setup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Current version.
2-
export var VERSION = '1.13.4';
2+
export var VERSION = '1.13.5';
33

44
// Establish the root object, `window` (`self`) in the browser, `global`
55
// on the server, or `this` in some virtual machines. We use `self`

‎modules/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Named Exports
22
// =============
33

4-
// Underscore.js 1.13.4
4+
// Underscore.js 1.13.5
55
// https://underscorejs.org
66
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
77
// Underscore may be freely distributed under the MIT license.

‎modules/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"type":"module","version":"1.13.4"}
1+
{"type":"module","version":"1.13.5"}

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "underscore",
33
"description": "JavaScript's functional programming helper library.",
4-
"version": "1.13.4",
4+
"version": "1.13.5",
55
"author": "Jeremy Ashkenas <jeremy@documentcloud.org>",
66
"license": "MIT",
77
"homepage": "https://underscorejs.org",
@@ -31,6 +31,7 @@
3131
"default": "./underscore-esm.js"
3232
},
3333
"require": {
34+
"module": "./modules/index-all.js",
3435
"browser": {
3536
"production": "./underscore-umd-min.js",
3637
"default": "./underscore-umd.js"

‎underscore-esm.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎underscore-node-f.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// Underscore.js 1.13.4
1+
// Underscore.js 1.13.5
22
// https://underscorejs.org
33
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
44
// Underscore may be freely distributed under the MIT license.
55

66
Object.defineProperty(exports, '__esModule', { value: true });
77

88
// Current version.
9-
var VERSION = '1.13.4';
9+
var VERSION = '1.13.5';
1010

1111
// Establish the root object, `window` (`self`) in the browser, `global`
1212
// on the server, or `this` in some virtual machines. We use `self`

‎underscore-node.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Underscore.js 1.13.4
1+
// Underscore.js 1.13.5
22
// https://underscorejs.org
33
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
44
// Underscore may be freely distributed under the MIT license.

‎underscore-node.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Underscore.js 1.13.4
1+
// Underscore.js 1.13.5
22
// https://underscorejs.org
33
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
44
// Underscore may be freely distributed under the MIT license.

‎underscore-umd.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.