Skip to content

Commit

Permalink
Merge pull request #2966 from jgonggrijp/prepare-1.13.5
Browse files Browse the repository at this point in the history
Prepare 1.13.5
  • Loading branch information
jgonggrijp authored Sep 23, 2022
2 parents 7459b8d + bef7ee3 commit 5ac6628
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 23 deletions.
37 changes: 26 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
<div id="sidebar" class="interface overlay-content">

<a class="toc_title" href="#">
Underscore.js <span class="version">(1.13.4)</span>
Underscore.js <span class="version">(1.13.5)</span>
</a>

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

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

<table>
<tr>
Expand Down Expand Up @@ -595,32 +595,32 @@ <h2>v1.13.4 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-clic
</tr>
</table>

<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>
<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>

<ul>
<li>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.4/underscore-umd-min.js</tt>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.5/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.4/underscore-esm-min.js</tt>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.5/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://unpkg.com/underscore@1.13.4/underscore-umd-min.js</tt>
<tt>https://unpkg.com/underscore@1.13.5/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://unpkg.com/underscore@1.13.4/underscore-esm-min.js</tt>
<tt>https://unpkg.com/underscore@1.13.5/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://pagecdn.io/lib/underscore/1.13.4/underscore-umd-min.js</tt>
<tt>https://pagecdn.io/lib/underscore/1.13.5/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://pagecdn.io/lib/underscore/1.13.4/underscore-esm-min.js</tt>
<tt>https://pagecdn.io/lib/underscore/1.13.5/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-umd-min.js</tt>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.5/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-esm-min.js</tt>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.5/underscore-esm-min.js</tt>
</li>
</ul>

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

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

<p id="1.13.5">
<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 />
<ul>
<li>
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.
</li>
<li>
Updates to the testing infrastructure and development dependencies.
</li>
<li>
No code changes.
</li>
</ul>
</p>

<p id="1.13.4">
<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 />
<ul>
Expand Down
2 changes: 1 addition & 1 deletion modules/_setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Current version.
export var VERSION = '1.13.4';
export var VERSION = '1.13.5';

// Establish the root object, `window` (`self`) in the browser, `global`
// on the server, or `this` in some virtual machines. We use `self`
Expand Down
2 changes: 1 addition & 1 deletion modules/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Named Exports
// =============

// Underscore.js 1.13.4
// Underscore.js 1.13.5
// https://underscorejs.org
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
2 changes: 1 addition & 1 deletion modules/package.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"type":"module","version":"1.13.4"}
{"type":"module","version":"1.13.5"}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "underscore",
"description": "JavaScript's functional programming helper library.",
"version": "1.13.4",
"version": "1.13.5",
"author": "Jeremy Ashkenas <jeremy@documentcloud.org>",
"license": "MIT",
"homepage": "https://underscorejs.org",
Expand Down Expand Up @@ -31,6 +31,7 @@
"default": "./underscore-esm.js"
},
"require": {
"module": "./modules/index-all.js",
"browser": {
"production": "./underscore-umd-min.js",
"default": "./underscore-umd.js"
Expand Down
4 changes: 2 additions & 2 deletions underscore-esm.js

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

4 changes: 2 additions & 2 deletions underscore-node-f.cjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Underscore.js 1.13.4
// Underscore.js 1.13.5
// https://underscorejs.org
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.

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

// Current version.
var VERSION = '1.13.4';
var VERSION = '1.13.5';

// Establish the root object, `window` (`self`) in the browser, `global`
// on the server, or `this` in some virtual machines. We use `self`
Expand Down
2 changes: 1 addition & 1 deletion underscore-node.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Underscore.js 1.13.4
// Underscore.js 1.13.5
// https://underscorejs.org
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
2 changes: 1 addition & 1 deletion underscore-node.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Underscore.js 1.13.4
// Underscore.js 1.13.5
// https://underscorejs.org
// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
4 changes: 2 additions & 2 deletions underscore-umd.js

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

0 comments on commit 5ac6628

Please sign in to comment.