Skip to content

Commit

Permalink
Publish v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed May 7, 2021
1 parent 340f327 commit 8ca1b14
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 22 deletions.
18 changes: 9 additions & 9 deletions accounts-line/.versions
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
accounts-base@1.8.0
accounts-base@1.9.0
accounts-oauth@1.2.0
allow-deny@1.1.0
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
Expand All @@ -15,7 +15,7 @@ ddp-rate-limiter@1.0.9
ddp-server@2.3.2
diff-sequence@1.1.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
Expand All @@ -27,15 +27,15 @@ inter-process-messaging@0.1.1
localstorage@1.2.0
logging@1.2.0
meteor@1.9.3
minimongo@1.6.1
minimongo@1.6.2
modern-browsers@0.1.5
modules@0.16.0
modules-runtime@0.12.0
mongo@1.10.1
mongo@1.11.0
mongo-decimal@0.1.2
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.8.1
npm-mongo@3.9.0
oauth@1.3.2
oauth2@1.3.0
ordered-dict@1.1.0
Expand All @@ -49,10 +49,10 @@ retry@1.1.0
routepolicy@1.1.0
service-configuration@1.0.11
socket-stream-client@0.3.1
storyteller:accounts-line@1.2.1
storyteller:line-oauth@1.2.0
storyteller:accounts-line@1.2.2
storyteller:line-oauth@1.2.1
tracker@1.2.0
underscore@1.0.10
url@1.3.1
webapp@1.10.0
webapp@1.10.1
webapp-hashing@1.1.0
3 changes: 3 additions & 0 deletions accounts-line/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.2 - 2021-05-07
* Updated `line-oauth@1.2.1`

## 1.2.1 - 2021-02-16
* No changes

Expand Down
6 changes: 3 additions & 3 deletions accounts-line/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'storyteller:accounts-line',
summary: 'Login service for LINE accounts',
version: '1.2.1',
version: '1.2.2',
git: 'https://github.com/StorytellerCZ/meteor-accounts-line'
});

Expand All @@ -12,8 +12,8 @@ Package.onUse(api => {
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.use('storyteller:line-oauth@1.2.0');
api.imply('storyteller:line-oauth@1.2.0');
api.use('storyteller:line-oauth@1.2.1');
api.imply('storyteller:line-oauth@1.2.1');

// If users use accounts-ui but not facebook-config-ui, give them a tip.
api.use(['accounts-ui', 'storyteller:line-config-ui@1.1.1'], ['client', 'server'], { weak: true });
Expand Down
16 changes: 8 additions & 8 deletions line-oauth/.versions
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
accounts-base@1.8.0
accounts-base@1.9.0
allow-deny@1.1.0
babel-compiler@7.6.0
babel-compiler@7.6.1
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
Expand All @@ -14,7 +14,7 @@ ddp-rate-limiter@1.0.9
ddp-server@2.3.2
diff-sequence@1.1.1
dynamic-import@0.6.0
ecmascript@0.15.0
ecmascript@0.15.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
ecmascript-runtime-server@0.10.0
Expand All @@ -26,15 +26,15 @@ inter-process-messaging@0.1.1
localstorage@1.2.0
logging@1.2.0
meteor@1.9.3
minimongo@1.6.1
minimongo@1.6.2
modern-browsers@0.1.5
modules@0.16.0
modules-runtime@0.12.0
mongo@1.10.1
mongo@1.11.0
mongo-decimal@0.1.2
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.8.1
npm-mongo@3.9.0
oauth@1.3.2
oauth2@1.3.0
ordered-dict@1.1.0
Expand All @@ -48,9 +48,9 @@ retry@1.1.0
routepolicy@1.1.0
service-configuration@1.0.11
socket-stream-client@0.3.1
storyteller:line-oauth@1.2.0
storyteller:line-oauth@1.2.1
tracker@1.2.0
underscore@1.0.10
url@1.3.1
webapp@1.10.0
webapp@1.10.1
webapp-hashing@1.1.0
3 changes: 3 additions & 0 deletions line-oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.1 - 2021-05-07
* Removed lost console log

## 1.2.0 - 2021-02-16
* Added `botPrompt` and `uiLocales` options to client
* Updated the README to document options and config parameters
Expand Down
1 change: 0 additions & 1 deletion line-oauth/line_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const jsonwebtoken = Npm.require('jsonwebtoken');
Line = {};

OAuth.registerService('line', 2, null, query => {
console.dir(query)
const responseFunc = Meteor.wrapAsync(getAccessToken);
const response = responseFunc(query);
const identity = getIdentity(response.id_token);
Expand Down
2 changes: 1 addition & 1 deletion line-oauth/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'storyteller:line-oauth',
summary: 'LINE OAuth flow',
version: '1.2.0',
version: '1.2.1',
git: 'https://github.com/StorytellerCZ/meteor-accounts-line'
});

Expand Down

0 comments on commit 8ca1b14

Please sign in to comment.