From e7b62f5d4f9eaa708fb3858570dbf08116763440 Mon Sep 17 00:00:00 2001 From: Morgan Roderick Date: Wed, 26 Apr 2023 12:53:33 +0200 Subject: [PATCH 1/5] Remove dead badges from README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index d514e5e..beaccda 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,7 @@

- Travis build statusDependenciesDevDependenciesNPM versionMIT LicenseNPM downloads/monthCoverage Status From 993c4a96e9eaaf913645779d59ea54c7cc0e5023 Mon Sep 17 00:00:00 2001 From: Morgan Roderick <20321+mroderick@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:10:24 +0100 Subject: [PATCH 2/5] Create FUNDING.yml --- .github/FUNDING.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..435c05b --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,15 @@ +# These are supported funding model platforms + +github: [mroderick] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +thanks_dev: gh/mroderick +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 19a58e0de494076443744e4ec0c76492eb5a7280 Mon Sep 17 00:00:00 2001 From: Morgan Roderick <20321+mroderick@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:14:28 +0100 Subject: [PATCH 3/5] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 435c05b..3d17476 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -11,5 +11,5 @@ issuehunt: # Replace with a single IssueHunt username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry polar: # Replace with a single Polar username buy_me_a_coffee: # Replace with a single Buy Me a Coffee username -thanks_dev: gh/mroderick +thanks_dev: # custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From ea4d477c593b0832092105e6ab9d985ea3cf301f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Kude=C5=82?= Date: Wed, 22 May 2024 18:16:00 +0200 Subject: [PATCH 4/5] Add support for server side rendering --- src/pubsub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pubsub.js b/src/pubsub.js index 29f73bc..d4b311b 100644 --- a/src/pubsub.js +++ b/src/pubsub.js @@ -32,7 +32,7 @@ /* eslint-enable no-undef */ } -}(( typeof window === 'object' && window ) || this, function (PubSub){ +}(( typeof window === 'object' && window ) || this || global, function (PubSub){ 'use strict'; var messages = {}, From e708af5bf3f992a50c5e51d61b933047481c5a41 Mon Sep 17 00:00:00 2001 From: Morgan Roderick Date: Mon, 28 Oct 2024 21:17:08 +0100 Subject: [PATCH 5/5] 1.9.5 --- CHANGES.md | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 32e62af..e713b5c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## 1.9.5 + +- [`ea4d477`](https://github.com/mroderick/PubSubJS/commit/ea4d477c593b0832092105e6ab9d985ea3cf301f) + Add support for server side rendering (Artur Kudeł) + +_Released on 2024-10-28._ + ## 1.9.4 - [`ae3284d`](https://github.com/mroderick/PubSubJS/commit/ae3284d46054b189e143b405e1bfc6c09643bf77) diff --git a/package-lock.json b/package-lock.json index 0a88278..e0690c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "pubsub-js", - "version": "1.9.4", + "version": "1.9.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7dabb1a..bcc5fac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pubsub-js", - "version": "1.9.4", + "version": "1.9.5", "description": "Dependency free publish/subscribe library", "main": "./src/pubsub.js", "directories": {