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 |
|---|---|---|---|---|---|---|---|---|---|
699 | 19.12.2022 11:44:16 | 21,600 | d336ce370c44485345b37aa2ec84a928c597e94b | Moves global dependency graph into config | [
{
"change_type": "MODIFY",
"old_path": "src/Engines/Custom.js",
"new_path": "src/Engines/Custom.js",
"diff": "const TemplateEngine = require(\"./TemplateEngine\");\nconst getJavaScriptData = require(\"../Util/GetJavaScriptData\");\n-const GlobalDependencyMap = require(\"../GlobalDependencyMap\");\nc... | JavaScript | MIT License | 11ty/eleventy | Moves global dependency graph into config |
699 | 19.12.2022 13:54:16 | 21,600 | 423e1051fde3765398b147f2d87b3006e6bab153 | Refactor makes built-in template languages incremental and template aware using global dependency graph | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "{\n\"name\": \"@11ty/eleventy\",\n- \"version\": \"2.0.0-canary.20\",\n+ \"version\": \"2.0.0-canary.21\",\n\"description\": \"Transform a directory of templates into HTML.\",\n\"publishConfig\": {\n\"access\... | JavaScript | MIT License | 11ty/eleventy | Refactor makes built-in template languages incremental and template aware using global dependency graph |
699 | 19.12.2022 14:59:23 | 21,600 | cadc546260201fce55f308278d09a9be733af23b | Rename to eleventyImport.collections to prepare for future imports | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateMap.js",
"new_path": "src/TemplateMap.js",
"diff": "@@ -175,7 +175,7 @@ class TemplateMap {\nthis.addDeclaredDependenciesToGraph(\ngraph,\nentry.inputPath,\n- entry.data.eleventyImportCollections\n+ entry.data.eleventyImport?.collections\n);\n}\n@@... | JavaScript | MIT License | 11ty/eleventy | Rename to eleventyImport.collections to prepare for future imports |
699 | 19.12.2022 17:22:04 | 21,600 | b98e7dbc183bd5197940ee70fe77abcc2739917e | Status commit for more improvements to incremental | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "const { DepGraph } = require(\"dependency-graph\");\nconst { TemplatePath } = require(\"@11ty/eleventy-utils\");\n-const PathNormalizer = require(\"./Util/PathNormalizer\");\n+cons... | JavaScript | MIT License | 11ty/eleventy | Status commit for more improvements to incremental |
699 | 19.12.2022 17:25:48 | 21,600 | 8781061449118bd1c1b15bfb71e0e0b268320428 | A bit of simplification for last incremental commit. | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "@@ -162,7 +162,7 @@ class GlobalDependencyMap {\n}\n}\n}\n- return Array.from(templates);\n+ return templates;\n}\n// Layouts are not relevant to compile cache and can be ignored\n... | JavaScript | MIT License | 11ty/eleventy | A bit of simplification for last incremental commit. |
699 | 20.12.2022 09:04:09 | 21,600 | a9f348c785be31db2531de393ab6ffb315358146 | Code cleanup for deleted from collections for incremental builds | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "@@ -7,7 +7,7 @@ const eventBus = require(\"./EventBus.js\");\nclass GlobalDependencyMap {\n// dependency-graph requires these keys to be alphabetic strings\nstatic LAYOUT_KEY = \"l... | JavaScript | MIT License | 11ty/eleventy | Code cleanup for deleted from collections for incremental builds |
699 | 20.12.2022 09:14:48 | 21,600 | 38b1617bf057d816035e23beedfbaefcf069b535 | naming clarity | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateMap.js",
"new_path": "src/TemplateMap.js",
"diff": "@@ -328,7 +328,7 @@ class TemplateMap {\n);\n}\n- setupDependencyGraphChanges(incrementalFile) {\n+ setupDependencyGraphChangesForIncrementalFile(incrementalFile) {\nif (!incrementalFile) {\nretur... | JavaScript | MIT License | 11ty/eleventy | naming clarity |
699 | 20.12.2022 17:09:54 | 21,600 | 0435c8d79229269a37bd6bee6a500fd5c53948e0 | Re-use FileSystemSearch during serve/watch | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -180,6 +180,9 @@ class Eleventy {\nthis.watchTargets = new EleventyWatchTargets();\nthis.watchTargets.addAndMakeGlob(this.config.additionalWatchTargets);\nthis.watchTargets.watchJavaScriptDependencie... | JavaScript | MIT License | 11ty/eleventy | Re-use FileSystemSearch during serve/watch |
699 | 21.12.2022 10:55:10 | 21,600 | 8132a95ef7f4a40905226bb6af48af16d12cf9df | Better compile cache management for incremental | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateContent.js",
"new_path": "src/TemplateContent.js",
"diff": "@@ -177,7 +177,7 @@ class TemplateContent {\nreturn this._inputCache.get(TemplatePath.absolutePath(path));\n}\n- static deleteCached(path) {\n+ static deleteFromInputCache(path) {\nthis._i... | JavaScript | MIT License | 11ty/eleventy | Better compile cache management for incremental |
699 | 21.12.2022 14:20:09 | 21,600 | 516f49e8565f7f5afa8f1ff8cac29995395646ef | Stringify and restore dependency map, part of | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "@@ -72,6 +72,10 @@ class GlobalDependencyMap {\nreturn this._map;\n}\n+ set map(graph) {\n+ this._map = graph;\n+ }\n+\nnormalizeNode(node) {\nif (!node) {\nreturn;\n@@ -92,9 +96,7... | JavaScript | MIT License | 11ty/eleventy | Stringify and restore dependency map, part of #984 |
699 | 21.12.2022 14:57:43 | 21,600 | c95235cbf292c78d01dbd8241a5f41cbb6a3587d | Restore layout resolution, add config api to disable, fixes | [
{
"change_type": "MODIFY",
"old_path": "test/TemplateLayoutPathResolverTest.js",
"new_path": "test/TemplateLayoutPathResolverTest.js",
"diff": "@@ -6,33 +6,16 @@ const EleventyExtensionMap = require(\"../src/EleventyExtensionMap\");\nfunction getResolverInstance(path, inputDir, { eleventyConfig, map... | JavaScript | MIT License | 11ty/eleventy | Restore layout resolution, add config api to disable, fixes #2708 |
699 | 21.12.2022 17:22:02 | 21,600 | 69a56da9413971c89a31b3b3654993d5c9812243 | Cache the transform output too for even better incremental builds | [
{
"change_type": "MODIFY",
"old_path": "src/Template.js",
"new_path": "src/Template.js",
"diff": "@@ -102,6 +102,7 @@ class Template extends TemplateContent {\nif (types.render) {\ndelete this._cacheRenderedContent;\n+ delete this._cacheFinalContent;\n}\n}\n@@ -766,6 +767,10 @@ class Template extend... | JavaScript | MIT License | 11ty/eleventy | Cache the transform output too for even better incremental builds |
699 | 22.12.2022 08:54:45 | 21,600 | e4501e8d7e549c42df8d3de00a8d9ba37ba7c303 | Fixes for non-incremental watch/serve, related to | [
{
"change_type": "MODIFY",
"old_path": "src/Template.js",
"new_path": "src/Template.js",
"diff": "@@ -91,10 +91,10 @@ class Template extends TemplateContent {\nthis.writeCount = 0;\n}\n- resetForIncremental(types) {\n+ resetCaches(types) {\ntypes = this.getResetTypes(types);\n- super.resetForIncreme... | JavaScript | MIT License | 11ty/eleventy | Fixes for non-incremental watch/serve, related to #2710 |
699 | 22.12.2022 09:00:00 | 21,600 | 01c1cf2160a47e1a2dbf968f3cca5e31b47d4bb1 | Reset data cache for non-matching templates during incremental | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateWriter.js",
"new_path": "src/TemplateWriter.js",
"diff": "@@ -272,6 +272,11 @@ class TemplateWriter {\nrender: true,\n});\n} else {\n+ // during incremental we only reset the data cache for non-matching templates\n+ // https://github.com/11ty/eleve... | JavaScript | MIT License | 11ty/eleventy | Reset data cache for non-matching templates during incremental #2710 |
699 | 22.12.2022 09:35:34 | 21,600 | 3b3a7c7e9e9bbc00b1047b143e40b87b05ffdb0c | Reset the data cache for matching templates during incremental | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateWriter.js",
"new_path": "src/TemplateWriter.js",
"diff": "@@ -269,6 +269,7 @@ class TemplateWriter {\n) {\n// Related to the template but not the template (only reset the render cache)\ntmpl.resetCaches({\n+ data: true,\nrender: true,\n});\n} else ... | JavaScript | MIT License | 11ty/eleventy | Reset the data cache for matching templates during incremental #2710 |
699 | 22.12.2022 13:57:00 | 21,600 | c4e18f1d22007a7c47772c717fbe1488a633de32 | Fixes regression for passthrough copy via globbing. | [
{
"change_type": "MODIFY",
"old_path": "src/FileSystemSearch.js",
"new_path": "src/FileSystemSearch.js",
"diff": "@@ -12,6 +12,13 @@ class FileSystemSearch {\nthis.count = 0;\n}\n+ getCacheKey(key, globs, options) {\n+ if (Array.isArray(globs)) {\n+ globs = globs.sort();\n+ }\n+ return key + JSON.st... | JavaScript | MIT License | 11ty/eleventy | Fixes regression for passthrough copy via globbing. |
699 | 03.01.2023 16:26:37 | 21,600 | 83fa7ff80df8137d53c27f5077f721f51f9c45db | Layout resolution keys and pathed layouts now share a cache | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateLayout.js",
"new_path": "src/TemplateLayout.js",
"diff": "@@ -14,44 +14,49 @@ class TemplateLayout extends TemplateContent {\nthrow new Error(\"Expected `config` in TemplateLayout constructor.\");\n}\n- let resolvedPath = new TemplateLayoutPathReso... | JavaScript | MIT License | 11ty/eleventy | Layout resolution keys and pathed layouts now share a cache |
699 | 03.01.2023 17:20:03 | 21,600 | aa9fdaba0a1ca622e8e700b2695cc98c192ef903 | Fix regression with layouts not applying during --incremental | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -269,7 +269,7 @@ class Eleventy {\nasync restart() {\ndebug(\"Restarting\");\nthis.start = this.getNewTimestamp();\n- templateCache.clear();\n+\nthis.bench.reset();\nthis.eleventyFiles.restart();\nth... | JavaScript | MIT License | 11ty/eleventy | Fix regression with layouts not applying during --incremental |
699 | 04.01.2023 10:49:35 | 21,600 | bb409cfa20a4206c824b8c8a6d587e230ed8454e | Remove _layoutContent | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateLayout.js",
"new_path": "src/TemplateLayout.js",
"diff": "@@ -160,9 +160,6 @@ class TemplateLayout extends TemplateContent {\nif (templateContent !== undefined) {\ndata.content = templateContent;\ndata.layoutContent = templateContent;\n-\n- // depr... | JavaScript | MIT License | 11ty/eleventy | Remove _layoutContent |
699 | 04.01.2023 16:55:24 | 21,600 | b1f06d907f8aab7db703452a511ee02e62eaf9b3 | Status commit for incremental layout rendering fixes | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -16,7 +16,6 @@ const PathPrefixer = require(\"./Util/PathPrefixer\");\nconst TemplateConfig = require(\"./TemplateConfig\");\nconst FileSystemSearch = require(\"./FileSystemSearch\");\n-const templat... | JavaScript | MIT License | 11ty/eleventy | Status commit for incremental layout rendering fixes |
699 | 04.01.2023 17:14:50 | 21,600 | 5418022a8812c6933159e44b68a0931047b7679a | Another status | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateLayout.js",
"new_path": "src/TemplateLayout.js",
"diff": "@@ -66,17 +66,16 @@ class TemplateLayout extends TemplateContent {\nasync getTemplateLayoutMapEntry() {\nreturn {\n+ // Used by `getTemplate()`\nkey: this.dataKeyLayoutPath,\ninputDir: this.... | JavaScript | MIT License | 11ty/eleventy | Another status |
699 | 05.01.2023 12:19:10 | 21,600 | 762014b8bb0ad5e0810b223eb830a099f8cae051 | Fix bug with incremental missing collection nodes | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "@@ -131,11 +131,12 @@ class GlobalDependencyMap {\nreturn new Set();\n}\n- let prevDeps = this.getDependantsFor(node).map((entry) => {\n- if (entry.startsWith(GlobalDependencyMap.C... | JavaScript | MIT License | 11ty/eleventy | Fix bug with incremental missing collection nodes |
699 | 05.01.2023 13:25:40 | 21,600 | b9d83d0e6f2409c2490772265bec2c6b0d233550 | Unskip a test, it works now | [
{
"change_type": "MODIFY",
"old_path": "test/TemplateTest_Permalink.js",
"new_path": "test/TemplateTest_Permalink.js",
"diff": "@@ -9,9 +9,7 @@ async function writeMapEntries(mapEntries) {\nlet promises = [];\nfor (let entry of mapEntries) {\nif (entry.template.behavior.isWriteable()) {\n- promises.... | JavaScript | MIT License | 11ty/eleventy | Unskip a test, it works now |
699 | 06.01.2023 10:18:29 | 21,600 | c904d26e6f0bad2bc484ba3a05c5f00f4a1d82b5 | Some more tweaks after deep diving into | [
{
"change_type": "MODIFY",
"old_path": "src/GlobalDependencyMap.js",
"new_path": "src/GlobalDependencyMap.js",
"diff": "const { DepGraph } = require(\"dependency-graph\");\nconst { TemplatePath } = require(\"@11ty/eleventy-utils\");\n+const debug = require(\"debug\")(\"Eleventy:Dependencies\");\ncon... | JavaScript | MIT License | 11ty/eleventy | Some more tweaks after deep diving into #2710 |
699 | 06.01.2023 12:03:49 | 21,600 | de9b478e435e50a71616b58835ef1730e6068a2d | Fix Layout chain not yet available error | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateLayout.js",
"new_path": "src/TemplateLayout.js",
"diff": "@@ -130,7 +130,7 @@ class TemplateLayout extends TemplateContent {\nasync getLayoutChain() {\nif (!Array.isArray(this.layoutChain)) {\n- throw new Error(\"Layout chain not yet available for ... | JavaScript | MIT License | 11ty/eleventy | Fix Layout chain not yet available error |
699 | 06.01.2023 14:25:04 | 21,600 | ce7fe13468473a98f16b1e9b9f1ecd1315d98588 | Adds `--initial` to run initial build on incremental | [
{
"change_type": "MODIFY",
"old_path": "cmd.js",
"new_path": "cmd.js",
"diff": "@@ -17,24 +17,8 @@ try {\nlet errorHandler = new EleventyErrorHandler();\nconst EleventyCommandCheckError = require(\"./src/EleventyCommandCheckError\");\nconst argv = require(\"minimist\")(process.argv.slice(2), {\n- st... | JavaScript | MIT License | 11ty/eleventy | Adds `--initial` to run initial build on incremental |
699 | 06.01.2023 14:51:04 | 21,600 | ad24276b7a46a3e14b40b6fb8ee881712c335e54 | Swap to `--ignore-initial` and make it work with and without incremental. Fixes | [
{
"change_type": "MODIFY",
"old_path": "cmd.js",
"new_path": "cmd.js",
"diff": "@@ -18,9 +18,19 @@ try {\nconst EleventyCommandCheckError = require(\"./src/EleventyCommandCheckError\");\nconst argv = require(\"minimist\")(process.argv.slice(2), {\nstring: [\"input\", \"output\", \"formats\", \"confi... | JavaScript | MIT License | 11ty/eleventy | Swap to `--ignore-initial` and make it work with and without incremental. Fixes #1336 |
699 | 06.01.2023 15:01:38 | 21,600 | 9f7c3295e06c9029ba2fc894bbf8cc5a8f2a14e3 | Help text addition for | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -646,6 +646,9 @@ Arguments:\n--watch\nWait for files to change and automatically rewrite (no web server)\n+ --ignore-initial\n+ Start without a build; build when files change. Works best with watch/s... | JavaScript | MIT License | 11ty/eleventy | Help text addition for https://github.com/11ty/eleventy/issues/1336 |
699 | 09.01.2023 12:37:51 | 21,600 | b5fc1c350907e8ca367d6d41e7a52222c6d371d5 | Adds `singleTemplateScope` option to serverless to slow-roll collections-friendly serverless builds | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -184,6 +184,7 @@ class Eleventy {\nthis.fileSystemSearch = new FileSystemSearch();\nthis.isIncremental = false;\n+ this.programmaticApiIncrementalFile = undefined;\nthis.isRunInitialBuild = true;\n}\... | JavaScript | MIT License | 11ty/eleventy | Adds `singleTemplateScope` option to serverless to slow-roll collections-friendly serverless builds |
699 | 09.01.2023 14:42:55 | 21,600 | 44327de59b0ae7416c454b1fdac1334fd3fb739e | Copy input folder to serverless bundle | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/Util/DirContains.js",
"diff": "+const path = require(\"path\");\n+\n+// Returns true if subfolder is in parent (accepts absolute or relative paths for both)\n+module.exports = function (parent, subfolder) {\n+ if (path.resolve(subfolder).sta... | JavaScript | MIT License | 11ty/eleventy | Copy input folder to serverless bundle |
699 | 10.01.2023 11:54:51 | 21,600 | 6de93363b80eeed226bf2b29729708c896dd2a0c | Combine file extension globs for template/data files | [
{
"change_type": "MODIFY",
"old_path": "src/EleventyExtensionMap.js",
"new_path": "src/EleventyExtensionMap.js",
"diff": "@@ -32,9 +32,7 @@ class EleventyExtensionMap {\nthis.hasExtension(key)\n);\n- this.passthroughCopyKeys = this.unfilteredFormatKeys.filter(\n- (key) => !this.hasExtension(key)\n- ... | JavaScript | MIT License | 11ty/eleventy | Combine file extension globs for template/data files |
699 | 10.01.2023 15:20:21 | 21,600 | 3225fc9c7861a5118c7ec27e53a9f181ef004e14 | Make dataFilterSelectors apply to the eleventy.after argument too! | [
{
"change_type": "MODIFY",
"old_path": "src/Template.js",
"new_path": "src/Template.js",
"diff": "@@ -724,7 +724,7 @@ class Template extends TemplateContent {\n}\n}\n- async _write({ url, outputPath }, finalContent) {\n+ async _write({ url, outputPath, data }, finalContent) {\nlet lang = {\nstart: \... | JavaScript | MIT License | 11ty/eleventy | Make dataFilterSelectors apply to the eleventy.after argument too! |
699 | 10.01.2023 16:07:54 | 21,600 | 1ac69fcdc6527733867c9296591be3cd52fa8759 | Simplify the render plugin code | [
{
"change_type": "MODIFY",
"old_path": "src/Plugins/RenderPlugin.js",
"new_path": "src/Plugins/RenderPlugin.js",
"diff": "@@ -13,11 +13,7 @@ const TemplateConfig = require(\"../TemplateConfig\");\nconst EleventyErrorUtil = require(\"../EleventyErrorUtil\");\nconst Liquid = require(\"../Engines/Liqui... | JavaScript | MIT License | 11ty/eleventy | Simplify the render plugin code |
699 | 10.01.2023 17:18:05 | 21,600 | 7f36250b35223f86491aeca142c2f786968b29f1 | Helper for the eleventy-upgrade-help plugin | [
{
"change_type": "MODIFY",
"old_path": "src/UserConfig.js",
"new_path": "src/UserConfig.js",
"diff": "@@ -774,6 +774,7 @@ class UserConfig {\n}\nsetBrowserSyncConfig() {\n+ this._attemptedBrowserSyncUse = true;\ndebug(\n\"The `setBrowserSyncConfig` method was removed in Eleventy 2.0.0. Use `setServe... | JavaScript | MIT License | 11ty/eleventy | Helper for the eleventy-upgrade-help plugin |
699 | 13.01.2023 15:00:54 | 21,600 | 2b2c14e9824a3341601def51fef729c6fec41c34 | Updates to Eleventy Dev Server 1.0 | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "},\n\"dependencies\": {\n\"@11ty/dependency-tree\": \"^2.0.1\",\n- \"@11ty/eleventy-dev-server\": \"^1.0.0-canary.14\",\n+ \"@11ty/eleventy-dev-server\": \"^1.0.0\",\n\"@11ty/eleventy-utils\": \"^1.0.1\",\n\"... | JavaScript | MIT License | 11ty/eleventy | Updates to Eleventy Dev Server 1.0 |
699 | 13.01.2023 19:31:24 | 21,600 | 8aa7ed5331e3ac07a7353e9c9f3b0b3b344f2fb8 | Fixes bug with changes to data files keeping old cached values. | [
{
"change_type": "MODIFY",
"old_path": "src/Template.js",
"new_path": "src/Template.js",
"diff": "@@ -53,10 +53,8 @@ class Template extends TemplateContent {\nthis.linters = [];\nthis.transforms = [];\n- this.templateData = templateData;\n- if (this.templateData) {\n- this.templateData.setInputDir(t... | JavaScript | MIT License | 11ty/eleventy | Fixes bug with changes to data files keeping old cached values. |
699 | 13.01.2023 20:41:43 | 21,600 | e6db367a1094bfebde492a5c696d708c75a42e35 | Fix tests, importantly global data is no longer fetched in empty projects.
and TemplateData->getData renamed to getGlobalData | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateData.js",
"new_path": "src/TemplateData.js",
"diff": "@@ -345,7 +345,7 @@ class TemplateData {\nreturn globalData;\n}\n- async getData() {\n+ async getGlobalData() {\nlet rawImports = this.getRawImports();\nif (!this.globalData) {\n@@ -418,10 +418,... | JavaScript | MIT License | 11ty/eleventy | Fix tests, importantly global data is no longer fetched in empty projects.
and TemplateData->getData renamed to getGlobalData |
714 | 18.01.2023 08:08:39 | 18,000 | baf7c733e51b27e38bfe281bda3643703ccdab3e | Replaces reject with throw
For | [
{
"change_type": "MODIFY",
"old_path": "src/TemplateLayout.js",
"new_path": "src/TemplateLayout.js",
"diff": "@@ -208,7 +208,7 @@ class TemplateLayout extends TemplateContent {\n} catch (e) {\ndebugDev(\"Clearing TemplateCache after error.\");\ntemplateCache.clear();\n- reject(e);\n+ throw e;\n}\n}\... | JavaScript | MIT License | 11ty/eleventy | Replaces reject with throw
For #2749 |
699 | 19.01.2023 16:46:55 | 21,600 | 3810ccf7c9c5ab7a5759ab9f039f1b3b4a693613 | Fixes by normalizing references for `.canary` to `.alpha`. | [
{
"change_type": "MODIFY",
"old_path": "src/UserConfig.js",
"new_path": "src/UserConfig.js",
"diff": "const chalk = require(\"kleur\");\n-const semver = require(\"semver\");\nconst { DateTime } = require(\"luxon\");\n+\nconst EventEmitter = require(\"./Util/AsyncEventEmitter\");\n+const EleventyComp... | JavaScript | MIT License | 11ty/eleventy | Fixes #2758 by normalizing references for `.canary` to `.alpha`. |
699 | 23.01.2023 17:17:07 | 21,600 | 2cb8ba22851ba7405ffb058e38cc7cda8c97c5a3 | debug log ignores for glob search | [
{
"change_type": "MODIFY",
"old_path": "src/FileSystemSearch.js",
"new_path": "src/FileSystemSearch.js",
"diff": "@@ -32,6 +32,7 @@ class FileSystemSearch {\nif (options.ignore && Array.isArray(options.ignore)) {\noptions.ignore = options.ignore.map((entry) => TemplatePath.stripLeadingDotSlash(entry... | JavaScript | MIT License | 11ty/eleventy | debug log ignores for glob search |
699 | 24.01.2023 11:11:40 | 21,600 | 99140d82c7844e53e611c4d875bcb0bf8715f2fe | Adds `runMode` to `eleventy` global data. Fixes | [
{
"change_type": "MODIFY",
"old_path": "src/Eleventy.js",
"new_path": "src/Eleventy.js",
"diff": "@@ -78,18 +78,23 @@ class Eleventy {\n* @member {Boolean} - Running in serverless mode\n* @default false\n*/\n-\n- // This needs to happen before `getEnvironmentVariableValues` below.\nif (\"isServerles... | JavaScript | MIT License | 11ty/eleventy | Adds `runMode` to `eleventy` global data. Fixes #2770 |
699 | 26.01.2023 16:47:12 | 21,600 | 6fedb868227a6002b8ddd2123153a9b2a24ce3ff | Update dev server dependency | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "},\n\"dependencies\": {\n\"@11ty/dependency-tree\": \"^2.0.1\",\n- \"@11ty/eleventy-dev-server\": \"^1.0.1\",\n+ \"@11ty/eleventy-dev-server\": \"^1.0.2\",\n\"@11ty/eleventy-utils\": \"^1.0.1\",\n\"@iarna/tom... | JavaScript | MIT License | 11ty/eleventy | Update dev server dependency |
699 | 26.01.2023 16:47:23 | 21,600 | c5ce8df2417225da36ac37ba731f14d1c78b6d77 | A few notes about beta/canary | [
{
"change_type": "MODIFY",
"old_path": "docs/release-instructions.md",
"new_path": "docs/release-instructions.md",
"diff": "1. Tag new version\n1. Release\n- (Canary) `npm publish --access=public --tag=canary`\n+ - NOTE: that in 3.0 we need to switch this to `alpha` to avoid https://github.com/11ty/... | JavaScript | MIT License | 11ty/eleventy | A few notes about beta/canary |
699 | 26.01.2023 17:09:46 | 21,600 | 153ea8fcf0312153e07d60193ccce7abba51ae50 | One more update to the dev server dep | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "},\n\"dependencies\": {\n\"@11ty/dependency-tree\": \"^2.0.1\",\n- \"@11ty/eleventy-dev-server\": \"^1.0.2\",\n+ \"@11ty/eleventy-dev-server\": \"^1.0.3\",\n\"@11ty/eleventy-utils\": \"^1.0.1\",\n\"@iarna/tom... | JavaScript | MIT License | 11ty/eleventy | One more update to the dev server dep |
726 | 29.01.2023 14:33:56 | -7,200 | b4662583701d7b33bdb2ef21b0cd4bafc360a0d2 | Make markdown library .set() method optional | [
{
"change_type": "MODIFY",
"old_path": "src/Engines/Markdown.js",
"new_path": "src/Engines/Markdown.js",
"diff": "@@ -18,7 +18,7 @@ class Markdown extends TemplateEngine {\n// Overrides a highlighter set in `markdownOptions`\n// This is separate so devs can pass in a new mdLib and still use the offi... | JavaScript | MIT License | 11ty/eleventy | Make markdown library .set() method optional |
734 | 30.01.2023 09:11:45 | 0 | 9f13b8e861d053fa2db160cda2c9249c2e5627c0 | Fixes serverlessFilePath is not defined (2.0.0-beta.2) | [
{
"change_type": "MODIFY",
"old_path": "src/Plugins/ServerlessBundlerPlugin.js",
"new_path": "src/Plugins/ServerlessBundlerPlugin.js",
"diff": "@@ -168,7 +168,7 @@ class BundlerHelper {\n);\nreturn async function EleventyServerlessMiddleware(req, res, next) {\n- deleteRequireCache(serverlessFilePath... | JavaScript | MIT License | 11ty/eleventy | Fixes serverlessFilePath is not defined (2.0.0-beta.2) #2782 |
686,936 | 05.01.2017 18:47:42 | 0 | 42b567633ae370e3c568134c7a7bddb92b225484 | Added ability to name stub mappings | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/client/BasicMappingBuilder.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/client/BasicMappingBuilder.java",
"diff": "@@ -39,6 +39,7 @@ class BasicMappingBuilder implements ScenarioMappingBuilder ... | Java | Apache License 2.0 | tomakehurst/wiremock | Added ability to name stub mappings |
686,936 | 05.01.2017 19:03:21 | 0 | c7597a766aaad79d895deae834145b3cb6b5753a | Made ClasspathFileSource fail silently when attempting writes so that it doesn't cause errors when all stubs are deleted | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/common/ClasspathFileSource.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/common/ClasspathFileSource.java",
"diff": "@@ -112,7 +112,6 @@ public class ClasspathFileSource implements FileSource {\n... | Java | Apache License 2.0 | tomakehurst/wiremock | Made ClasspathFileSource fail silently when attempting writes so that it doesn't cause errors when all stubs are deleted |
686,936 | 06.01.2017 17:52:52 | 0 | bfb5bbed81cb6d4150294cbadcc8447a272213b4 | Fix - bind HTTPS to a specific host if required | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyHttpServer.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyHttpServer.java",
"diff": "@@ -78,6 +78,7 @@ class JettyHttpServer implements HttpServer {\nif (options.httpsSett... | Java | Apache License 2.0 | tomakehurst/wiremock | Fix #539 - bind HTTPS to a specific host if required |
686,936 | 06.01.2017 18:35:56 | 0 | ed43ebc4e7c19d29d67a3c439661d6a8cc5ca3a2 | Added note about using standalone JAR with Spring Boot | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/getting-started.md",
"new_path": "docs-v2/_docs/getting-started.md",
"diff": "@@ -10,11 +10,13 @@ WireMock is distributed in two flavours - a standard JAR containing just\nWireMock, and a standalone fat JAR containing WireMock plus all its\ndepen... | Java | Apache License 2.0 | tomakehurst/wiremock | Added note about using standalone JAR with Spring Boot |
687,020 | 07.01.2017 13:58:37 | -3,600 | 11f169aff2f347dfacd1c088c2aab5c375fddabc | Add additional information about file serving to the documentation | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/running-standalone.md",
"new_path": "docs-v2/_docs/running-standalone.md",
"diff": "@@ -180,7 +180,7 @@ You can push a collection of mappings to a remote\n## File serving\n-When running standalone files placed under the `__files` directory will\n... | Java | Apache License 2.0 | tomakehurst/wiremock | Add additional information about file serving to the documentation |
686,936 | 10.01.2017 09:20:16 | 0 | 5e3c4b0c7746d7fe901f9714d680fb4f0396ac94 | Added DSL shortcuts for common response types | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java",
"diff": "@@ -31,6 +31,8 @@ import com.github.tomakehurst.wiremock.standalone.RemoteMappingsLoader;\nimport co... | Java | Apache License 2.0 | tomakehurst/wiremock | Added DSL shortcuts for common response types |
686,936 | 12.01.2017 18:51:38 | 0 | 0a34aa8ebef608e2f710bb1543c133a86b2e462b | Asserts that Transfer-Encoding is absent when Content-Length header sent in test case | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/MappingsAcceptanceTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/MappingsAcceptanceTest.java",
"diff": "@@ -25,6 +25,7 @@ import static com.github.tomakehurst.wiremock.testsupport.MappingJso... | Java | Apache License 2.0 | tomakehurst/wiremock | Asserts that Transfer-Encoding is absent when Content-Length header sent in test case |
686,936 | 12.01.2017 19:13:34 | 0 | 07f8834eb562748bd88e9da4bbfc8f644ecd9c24 | Fixed - when converting an escaped URL query to a logged request field it no longer attempts (and fails) to URL escape the values twice | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Urls.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Urls.java",
"diff": "@@ -62,7 +62,7 @@ public class Urls {\nreturn Collections.emptyMap();\n}\n- return splitQuery(uri.getQuery()... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #571 - when converting an escaped URL query to a logged request field it no longer attempts (and fails) to URL escape the values twice |
686,985 | 19.01.2017 12:53:27 | 0 | 4aae11db8fb2d21718d86ad9ed0923fd6f558cfd | fixing docs, the code did not compile because the method has been rename a while back | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/extending-wiremock.md",
"new_path": "docs-v2/_docs/extending-wiremock.md",
"diff": "@@ -234,7 +234,7 @@ at the top of this page e.g.\npublic class BodyLengthMatcher extends RequestMatcherExtension {\n@Override\n- public String name() {\n+ public ... | Java | Apache License 2.0 | tomakehurst/wiremock | fixing docs, the code did not compile because the method has been rename a while back |
686,936 | 20.01.2017 17:59:17 | 0 | eb44a6010023e5a1983466ce08cb95c50557b002 | Fixed - response is now provided to post serve actions (was previously null) | [
{
"change_type": "DELETE",
"old_path": "notes.txt",
"new_path": null,
"diff": "-value: is equal\n-object: are all keys present and values equal, recursing into objects?\n-array: for each in source array, match each in target array + calc distance, add 1 distance point for each additional target elem... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #585 - response is now provided to post serve actions (was previously null) |
686,936 | 21.01.2017 17:54:44 | 0 | 2e5ac644187c9f8af2db6f7b288a11b2e4f67974 | Fixed flakey test for presence of response in post serve action extension | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/PostServeActionExtensionTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/PostServeActionExtensionTest.java",
"diff": "@@ -17,6 +17,8 @@ import org.junit.After;\nimport org.junit.Test;\nimport ... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed flakey test for presence of response in post serve action extension |
686,936 | 21.01.2017 19:42:05 | 0 | 062d2cfa3ec0a197797be4d2e672a9097a75e576 | Further test race condition fixes | [
{
"change_type": "MODIFY",
"old_path": "build.gradle",
"new_path": "build.gradle",
"diff": "@@ -79,6 +79,7 @@ dependencies {\n}\ntestCompile \"org.skyscreamer:jsonassert:1.2.3\"\ntestCompile 'com.toomuchcoding.jsonassert:jsonassert:0.4.7'\n+ testCompile 'org.awaitility:awaitility:2.0.0'\ntestCompile... | Java | Apache License 2.0 | tomakehurst/wiremock | Further test race condition fixes |
686,936 | 23.01.2017 09:36:52 | 0 | 593c34600597faa203d27f9575193beaf2086b21 | Fixed - added missing annotation onto matcher and added a reflective test to ensure future matchers have this | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java",
"diff": "@@ -25,7 +25,7 @@ import static com.github.tomakehurst.wiremock.comm... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #580 - added missing @JsonProperty annotation onto matcher and added a reflective test to ensure future matchers have this |
686,936 | 23.01.2017 19:41:48 | 0 | 2c7166ef6d92dd51a40f4477d10bc7ef87fcb6dd | Fixed - ClasspathFileSource now supports spaces in paths to zip/jar/war/ear files | [
{
"change_type": "MODIFY",
"old_path": "build.gradle",
"new_path": "build.gradle",
"diff": "@@ -86,7 +86,7 @@ dependencies {\ntestCompile 'org.scala-lang:scala-library:2.11.8'\ntestRuntime 'org.slf4j:slf4j-log4j12:1.7.12'\n- testRuntime files('src/test/resources/classpathfiles.zip', 'src/test/resour... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #552 - ClasspathFileSource now supports spaces in paths to zip/jar/war/ear files |
686,936 | 28.01.2017 20:51:12 | 0 | 12a362f6c717a5b775e728c77b23d6a08f744fa3 | Fixed - now applies response templates to body files | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java",
"diff": "@@ -6,6 +6,7 @@ im... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #593 - now applies response templates to body files |
686,936 | 28.01.2017 21:40:04 | 0 | 7d8a488008dadb714e8a140a6360da5a630959e5 | Fixed - ConsoleNotifier now renders dates with padded milliseconds for consistency with other log output and ease of parsing | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/common/ConsoleNotifier.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/common/ConsoleNotifier.java",
"diff": "@@ -52,7 +52,7 @@ public class ConsoleNotifier implements Notifier {\n}\nprivate stati... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #587 - ConsoleNotifier now renders dates with padded milliseconds for consistency with other log output and ease of parsing |
686,936 | 28.01.2017 21:45:42 | 0 | 6910787e403d57a72ed41b604ba6212526fb11a4 | Deleted redundant test class | [
{
"change_type": "DELETE",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/extension/HandlebarsTest.java",
"new_path": null,
"diff": "-package com.github.tomakehurst.wiremock.extension;\n-\n-import com.github.jknack.handlebars.Handlebars;\n-import com.github.jknack.handlebars.Helper;\n-im... | Java | Apache License 2.0 | tomakehurst/wiremock | Deleted redundant test class |
686,936 | 01.02.2017 18:50:44 | 0 | 4ed80bd192eefd7e0050fbd77f91636f511b5f7e | Documented Java shortcuts and added status() shortcut to the DSL | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/stubbing.md",
"new_path": "docs-v2/_docs/stubbing.md",
"diff": "@@ -55,6 +55,39 @@ document can either be posted to\n}\n```\n+### Java Shortcuts\n+\n+Some common request and response patterns can be expressed in Java in abbreviated forms.\n+\n+Re... | Java | Apache License 2.0 | tomakehurst/wiremock | Documented Java shortcuts and added status() shortcut to the DSL |
687,010 | 05.03.2017 11:15:36 | -3,600 | 51e95249ff2c947a08977df5d95c38b083f0a38b | Upgrade to latest version of zjsonpatch | [
{
"change_type": "MODIFY",
"old_path": "build.gradle",
"new_path": "build.gradle",
"diff": "@@ -61,7 +61,7 @@ dependencies {\nexclude group: \"org.hamcrest\", module: \"hamcrest-core\"\n}\ncompile 'org.apache.commons:commons-lang3:3.4'\n- compile 'com.flipkart.zjsonpatch:zjsonpatch:0.2.1'\n+ compile... | Java | Apache License 2.0 | tomakehurst/wiremock | Upgrade to latest version of zjsonpatch |
686,936 | 13.03.2017 09:16:48 | 0 | bd14bd0ba1e3766ff4f1c14a3f35306f12d0a811 | Fixed bug causing the same mapping to be recorded twice the first time round (stopping only after two identical requests seen). | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/stubbing/StubMappingJsonRecorder.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/stubbing/StubMappingJsonRecorder.java",
"diff": "@@ -144,7 +144,7 @@ public class StubMappingJsonRecorder implement... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed bug causing the same mapping to be recorded twice the first time round (stopping only after two identical requests seen). |
686,936 | 13.03.2017 22:30:57 | 0 | 10e092ac08a92927166364f906743aa3f8191b2d | Fix tests broken by fixing recorded file count bug | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/StandaloneAcceptanceTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/StandaloneAcceptanceTest.java",
"diff": "@@ -23,6 +23,7 @@ import com.github.tomakehurst.wiremock.testsupport.WireMockRespo... | Java | Apache License 2.0 | tomakehurst/wiremock | Fix tests broken by fixing recorded file count bug |
686,936 | 13.03.2017 23:00:54 | 0 | 2ea6003c35015bd958acd6e94f566afa8ff576ef | Updated external resources page on the website | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/external-resources/index.md",
"new_path": "docs-v2/external-resources/index.md",
"diff": "@@ -12,7 +12,7 @@ Code, articles and videos related to WireMock from around the web.\nSpring Contract Verifier (previously called Accurest) is a consumer driven c... | Java | Apache License 2.0 | tomakehurst/wiremock | Updated external resources page on the website |
686,936 | 14.03.2017 09:11:25 | 0 | 8d0f76b956263619d303f6729d777be232276e36 | Added DSL shortcuts for XML | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java",
"diff": "@@ -372,13 +372,25 @@ public class WireMock {\nreturn aResponse().withStatus(200).withBody(body);\n}... | Java | Apache License 2.0 | tomakehurst/wiremock | Added DSL shortcuts for XML |
686,936 | 15.03.2017 09:15:03 | 0 | 40e0dd03421801dd2835c771ee787b978d085ee2 | Added proxyAll DSL shortcut. Improved DSL shortcuts docs and examples. | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/stubbing.md",
"new_path": "docs-v2/_docs/stubbing.md",
"diff": "@@ -89,6 +89,8 @@ stubFor(put(\"/status-only\")\n```\n+More DSL examples [can be found here](https://github.com/tomakehurst/wiremock/tree/master/src/test/java/ignored/Examples.java#3... | Java | Apache License 2.0 | tomakehurst/wiremock | Added proxyAll DSL shortcut. Improved DSL shortcuts docs and examples. |
686,960 | 28.03.2017 14:53:53 | -7,200 | 6bbc97e8af82ae8d7df4932b68bf44adc6e2b6a3 | added proxy settings to connect to remote wiremock server over a http proxy
e.g.
WireMock instance = new WireMock("https", "wiremock.server.url", 443, null, "" "proxyhost", proxyport); | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/client/HttpAdminClient.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/client/HttpAdminClient.java",
"diff": "*/\npackage com.github.tomakehurst.wiremock.client;\n-import com.github.tomakehurst.wi... | Java | Apache License 2.0 | tomakehurst/wiremock | added proxy settings to connect to remote wiremock server over a http proxy
e.g.
WireMock instance = new WireMock("https", "wiremock.server.url", 443, null, "" "proxyhost", proxyport); |
686,933 | 06.04.2017 13:23:28 | -7,200 | 77743d03594da1b00d83838b29ffb21aea4b9bf2 | Prevent null pointer exception when getting MimeTypePart | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/http/ContentTypeHeader.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/http/ContentTypeHeader.java",
"diff": "@@ -41,7 +41,7 @@ public class ContentTypeHeader extends HttpHeader {\n}\npublic Strin... | Java | Apache License 2.0 | tomakehurst/wiremock | #643 Prevent null pointer exception when getting MimeTypePart |
686,936 | 06.04.2017 14:16:33 | -3,600 | 211a0e271c6b20f3b25579cc7bf27b1ea47a06ed | Attempt to make post serve action tests less flakey by extending timeouts. Switched away from countdown latch to async test framework code. | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/PostServeActionExtensionTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/PostServeActionExtensionTest.java",
"diff": "@@ -18,7 +18,6 @@ import org.junit.Test;\nimport java.util.concurrent.Call... | Java | Apache License 2.0 | tomakehurst/wiremock | Attempt to make post serve action tests less flakey by extending timeouts. Switched away from countdown latch to async test framework code. |
686,936 | 06.04.2017 14:53:01 | -3,600 | 08a817936df1b2836f9915e06e8ce60cc2ec40c8 | Added shading of Handlebars and Antlr to the build | [
{
"change_type": "MODIFY",
"old_path": "build.gradle",
"new_path": "build.gradle",
"diff": "@@ -151,6 +151,8 @@ shadowJar {\nrelocate \"org.custommonkey\", \"wiremock.org.custommonkey\"\nrelocate \"com.flipkart\", \"wiremock.com.flipkart\"\nrelocate \"net.sf\", \"wiremock.net.sf\"\n+ relocate \"com.... | Java | Apache License 2.0 | tomakehurst/wiremock | Added shading of Handlebars and Antlr to the build |
686,936 | 06.04.2017 15:07:26 | -3,600 | da0cf4428aa625d0e2ca53a550b907b612cdcacc | Fixed - incorrectly documented default thread count | [
{
"change_type": "MODIFY",
"old_path": "docs-v2/_docs/running-standalone.md",
"new_path": "docs-v2/_docs/running-standalone.md",
"diff": "@@ -82,7 +82,7 @@ exhausting the heap. The `--record-mappings` option isn't available if\nthis one is specified.\n`--container-threads`: The number of threads cre... | Java | Apache License 2.0 | tomakehurst/wiremock | Fixed #598 - incorrectly documented default thread count |
686,972 | 10.04.2017 11:11:47 | -3,600 | 9dcbfd02bcca05714f0bda73ce542892c3af0fa8 | Suggested API doc change to fix | [
{
"change_type": "MODIFY",
"old_path": "src/main/resources/raml/wiremock-admin-api.raml",
"new_path": "src/main/resources/raml/wiremock-admin-api.raml",
"diff": "@@ -162,6 +162,14 @@ schemas:\nbody:\napplication/json:\nexample: !include examples/serve-events.example.json\n+ delete:\n+ description: D... | Java | Apache License 2.0 | tomakehurst/wiremock | Suggested API doc change to fix #581 |
686,960 | 11.04.2017 11:21:36 | -7,200 | 42b5d1f053523b15b34dd30cba2badb989039ed5 | added proxy settings to connect to remote wiremock server over a http proxy
e.g.
WireMock instance = new WireMock("https", "wiremock.server.url", 443, null, "" "proxyhost", proxyport);
See WireMockClientWithProxyAcceptanceTest | [
{
"change_type": "MODIFY",
"old_path": "build.gradle",
"new_path": "build.gradle",
"diff": "@@ -60,7 +60,7 @@ dependencies {\ncompile(\"junit:junit:4.12\") {\nexclude group: \"org.hamcrest\", module: \"hamcrest-core\"\n}\n- compile 'org.apache.commons:commons-lang3:3.4'\n+ compile 'org.apache.common... | Java | Apache License 2.0 | tomakehurst/wiremock | added proxy settings to connect to remote wiremock server over a http proxy
e.g.
WireMock instance = new WireMock("https", "wiremock.server.url", 443, null, "" "proxyhost", proxyport);
See WireMockClientWithProxyAcceptanceTest |
686,958 | 02.05.2017 10:01:39 | -3,600 | 2330049834abf8ff766a03786ff01309613645f1 | Issue - Added check to remove trailing forward slash if found in proxy URL | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/http/ProxyResponseRenderer.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/http/ProxyResponseRenderer.java",
"diff": "@@ -95,7 +95,10 @@ public class ProxyResponseRenderer implements ResponseRende... | Java | Apache License 2.0 | tomakehurst/wiremock | Issue #655 - Added check to remove trailing forward slash if found in proxy URL |
687,032 | 04.05.2017 18:07:09 | -10,800 | e0c4c46fa75d4e7391fabcd558018be24782a1a4 | Enabled query parameters to be logged in request log separately from the URL | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/http/QueryParameter.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/http/QueryParameter.java",
"diff": "*/\npackage com.github.tomakehurst.wiremock.http;\n+import com.fasterxml.jackson.annotation.... | Java | Apache License 2.0 | tomakehurst/wiremock | Enabled query parameters to be logged in request log separately from the URL |
686,965 | 03.06.2017 21:08:14 | 25,200 | 3fb618be8100c88e6ac5f5bea95c9e28e20f7aef | Fix "persist" flag to default to true | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -2,6 +2,7 @@ package com.github.tomakehurst.wiremock.admin.model;\nimport com.f... | Java | Apache License 2.0 | tomakehurst/wiremock | Fix "persist" flag to default to true |
686,965 | 10.06.2017 00:42:20 | 25,200 | 97a767f8cc834ed39499c81af419c87e6ff62241 | Add ability to filter by ServeEvent ids | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/ServeEventRequestFilters.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/ServeEventRequestFilters.java",
"diff": "@@ -7,22 +7,37 @@ import com.github.tomakehurst.wiremock.m... | Java | Apache License 2.0 | tomakehurst/wiremock | Add ability to filter by ServeEvent ids |
686,965 | 10.06.2017 00:47:14 | 25,200 | 18d44f5af1c7a3f18a7c177a8b433d16b7dbcdc6 | Remove sorting option from SnapshotSpec, since it could be confusing | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -3,7 +3,6 @@ package com.github.tomakehurst.wiremock.admin.model;\nimport com.f... | Java | Apache License 2.0 | tomakehurst/wiremock | Remove sorting option from SnapshotSpec, since it could be confusing |
686,965 | 10.06.2017 00:50:54 | 25,200 | 47f4adcacf9afb8e65d091abd208efb2b46b69de | Make default output format for SnapshotSpec "full" for consistency with other formats | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/tasks/SnapshotTask.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/tasks/SnapshotTask.java",
"diff": "@@ -50,7 +50,7 @@ public class SnapshotTask implements AdminTask {\nstubMapping.se... | Java | Apache License 2.0 | tomakehurst/wiremock | Make default output format for SnapshotSpec "full" for consistency with other formats |
686,965 | 10.06.2017 02:14:32 | 25,200 | 7e49cfb21d48d7767ecb186131664d98d5a03efb | Don't generate a content-based UUID for the stub mapping, because it isn't necessary to de-dupe | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/StubMappingTransformer.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/StubMappingTransformer.java",
"diff": "package com.github.tomakehurst.wiremock.admin.model;\n-import ... | Java | Apache License 2.0 | tomakehurst/wiremock | Don't generate a content-based UUID for the stub mapping, because it isn't necessary to de-dupe |
686,965 | 10.06.2017 19:53:08 | 25,200 | 403bf9f42beda433d4b1dc6fa51c4b7d66685768 | Make output formats into an enum, which is slightly cleaner | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotOutputFormat.java",
"diff": "+package com.github.tomakehurst.wiremock.admin.model;\n+\n+import com.fasterxml.jackson.annotation.JsonCreator;\n+import com.github.tomakehurst.wiremo... | Java | Apache License 2.0 | tomakehurst/wiremock | Make output formats into an enum, which is slightly cleaner |
686,965 | 11.06.2017 22:37:21 | 25,200 | b66c1afa84fd99cc3ce789c5295aeaae631a5d7d | Refactoring to facilitate scenario support | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/LoggedResponseDefinitionTransformer.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/LoggedResponseDefinitionTransformer.java",
"diff": "@@ -16,7 +16,7 @@ import static com.... | Java | Apache License 2.0 | tomakehurst/wiremock | Refactoring to facilitate scenario support |
686,965 | 11.06.2017 22:46:46 | 25,200 | 6eaffd841c2b11be7539a7ff8e7c9c0bd515a671 | Add support for recording identical requests as a scenario | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -20,17 +20,23 @@ public class SnapshotSpec {\nprivate SnapshotOutputFormat outp... | Java | Apache License 2.0 | tomakehurst/wiremock | Add support for recording identical requests as a scenario |
686,965 | 11.06.2017 22:50:33 | 25,200 | ddfbf578367b5c6dd0e729bc8cc5e0859ac61518 | Relocate snapshot endpoint to /recordings/snapshot | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java",
"diff": "@@ -80,7 +80,7 @@ public class AdminRoutes {\nrouter.add(GET, \"/requests/unmatched/near-misses\... | Java | Apache License 2.0 | tomakehurst/wiremock | Relocate snapshot endpoint to /recordings/snapshot |
686,965 | 11.06.2017 23:13:37 | 25,200 | 442368c6db8622296f14bba8e8982d0c662f3048 | Don't need to track every stub mapping, just the previous | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotStubMappingScenarioHandler.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotStubMappingScenarioHandler.java",
"diff": "@@ -8,8 +8,6 @@ import com.google.comm... | Java | Apache License 2.0 | tomakehurst/wiremock | Don't need to track every stub mapping, just the previous |
686,965 | 11.06.2017 23:28:11 | 25,200 | aca8eacf4f507ccecd234775a27ece11a0c79e6f | Don't need to track name either because it's stored in the StubMapping | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotStubMappingScenarioHandler.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotStubMappingScenarioHandler.java",
"diff": "@@ -18,7 +18,6 @@ public class Snapsho... | Java | Apache License 2.0 | tomakehurst/wiremock | Don't need to track name either because it's stored in the StubMapping |
686,965 | 14.06.2017 00:29:08 | 25,200 | f68b37e6010a07f5cc77000450923e23b5d58b12 | Refactoring, cleanup, and adding tests | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotOutputFormat.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotOutputFormat.java",
"diff": "@@ -7,7 +7,12 @@ import com.github.tomakehurst.wiremock.stubbing.S... | Java | Apache License 2.0 | tomakehurst/wiremock | Refactoring, cleanup, and adding tests |
687,057 | 15.06.2017 12:55:33 | 25,200 | 6af50bf145d436c186d92fd15ef5b5607a61102f | Adding new type of fault, CONNECTION_RESET_BY_PEER | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/core/FaultInjector.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/core/FaultInjector.java",
"diff": "@@ -17,6 +17,7 @@ package com.github.tomakehurst.wiremock.core;\npublic interface FaultInjecto... | Java | Apache License 2.0 | tomakehurst/wiremock | Adding new type of fault, CONNECTION_RESET_BY_PEER |
687,057 | 16.06.2017 09:34:34 | 25,200 | 7e693de1e1ed54b4408ec8319917d0c4cd5cf14d | Add CONNECTION_RESET_BY_PEER fault to raml response definition schema | [
{
"change_type": "MODIFY",
"old_path": "src/main/resources/raml/schemas/response-definition.schema.json",
"new_path": "src/main/resources/raml/schemas/response-definition.schema.json",
"diff": "\"type\": \"string\",\n\"description\": \"The fault to apply (instead of a full, valid response).\",\n\"en... | Java | Apache License 2.0 | tomakehurst/wiremock | Add CONNECTION_RESET_BY_PEER fault to raml response definition schema |
686,965 | 17.06.2017 03:15:36 | 25,200 | 194b85142eeaeca4738e43ed769d808741e244bd | Add SnapshotAcceptanceTest, mostly with tests moved from SnapshotTaskTest
These tests ended up uncovering a few bugs, which I've fixed. | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -33,7 +33,7 @@ public class SnapshotSpec {\n@JsonProperty(\"repeatsAsScenarios\... | Java | Apache License 2.0 | tomakehurst/wiremock | Add SnapshotAcceptanceTest, mostly with tests moved from SnapshotTaskTest
These tests ended up uncovering a few bugs, which I've fixed. |
686,965 | 17.06.2017 16:00:43 | 25,200 | 43a325058e20e0dbf6f69e9ec3ec8ee79ff0cf40 | Don't persist stub mappings in SnapshotAcceptanceTest#returnsRequestsWithDefaultOptions() | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/SnapshotAcceptanceTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/SnapshotAcceptanceTest.java",
"diff": "@@ -36,7 +36,9 @@ public class SnapshotAcceptanceTest extends AcceptanceTestBase {\npr... | Java | Apache License 2.0 | tomakehurst/wiremock | Don't persist stub mappings in SnapshotAcceptanceTest#returnsRequestsWithDefaultOptions() |
686,965 | 17.06.2017 16:49:36 | 25,200 | b4f37f36efd3bbafd10380bb1808df78178db4c0 | Complete refactoring for repeated request/scenario handling | [
{
"change_type": "RENAME",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotStubMappingScenarioHandler.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotRepeatedRequestHandler.java",
"diff": "@@ -8,36 +8,50 @@ import com.google.common... | Java | Apache License 2.0 | tomakehurst/wiremock | Complete refactoring for repeated request/scenario handling |
686,965 | 17.06.2017 17:16:00 | 25,200 | 462af43dba1162d4e4886f3ef7ccd2179b069905 | Make sure proxy server is stopped in SnapshotAcceptanceTest | [
{
"change_type": "MODIFY",
"old_path": "src/test/java/com/github/tomakehurst/wiremock/SnapshotAcceptanceTest.java",
"new_path": "src/test/java/com/github/tomakehurst/wiremock/SnapshotAcceptanceTest.java",
"diff": "@@ -20,6 +20,7 @@ import com.github.tomakehurst.wiremock.client.WireMock;\nimport com.... | Java | Apache License 2.0 | tomakehurst/wiremock | Make sure proxy server is stopped in SnapshotAcceptanceTest |
686,965 | 17.06.2017 19:02:48 | 25,200 | 44634c5f072ecc5c1bf11de530dd3dd5e38c4097 | Add StubMappingTransfer extension interface and update snapshot to use it | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -3,8 +3,10 @@ package com.github.tomakehurst.wiremock.admin.model;\nimport com.... | Java | Apache License 2.0 | tomakehurst/wiremock | Add StubMappingTransfer extension interface and update snapshot to use it |
686,965 | 17.06.2017 20:03:25 | 25,200 | 2be25f76c0870674a54d30739a815738ecdd82f6 | Remove sortFields argument to SnapshotSpec that I forgot about | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotSpec.java",
"diff": "@@ -32,7 +32,6 @@ public class SnapshotSpec {\n@JsonCreator\npublic SnapshotSpec(\... | Java | Apache License 2.0 | tomakehurst/wiremock | Remove sortFields argument to SnapshotSpec that I forgot about |
686,965 | 17.06.2017 21:13:54 | 25,200 | 056016f9261cb65568ef50dc6bcd6b3a4916768e | Moving some logic over to UniqueFilenameGenerator | [
{
"change_type": "MODIFY",
"old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotRepeatedRequestHandler.java",
"new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/model/SnapshotRepeatedRequestHandler.java",
"diff": "package com.github.tomakehurst.wiremock.admin.... | Java | Apache License 2.0 | tomakehurst/wiremock | Moving some logic over to UniqueFilenameGenerator |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.