Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOR REVIEW ONLY - Release v1.24.1 #716

Merged
merged 4 commits into from
Dec 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ module.exports = {
],
ignorePatterns: [
'dist/',
'docs/',
'tests/cucumber/features/',
'tests/cucumber/build/',
'tests/cucumber/browser/build/',
'tests/browser/bundle.*',
],
};
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# v1.24.1

## What's Changed

### Enhancements

- Packaging: Improve source map and browser usage for external bundlers by @jasonpaulos in https://github.com/algorand/js-algorand-sdk/pull/707

**Full Changelog**: https://github.com/algorand/js-algorand-sdk/compare/v1.24.0...v1.24.1

# v1.24.0

## What's Changed
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Include a minified browser bundle directly in your HTML like so:

```html
<script
src="https://unpkg.com/[email protected].0/dist/browser/algosdk.min.js"
integrity="sha384-PgD+QJZqpxjiZn/vLc2OPg8jbbOv7i0Scv2y3aB+VoUNIP4P93CR96QdzEQctWY9"
src="https://unpkg.com/[email protected].1/dist/browser/algosdk.min.js"
integrity="sha384-cXCnQHmkjqS84S5jqAp6YXjU1ynCEJaHROHklSY7eh+cCXQ3aGX0oSgJSfQgDF5y"
crossorigin="anonymous"
></script>
```
Expand All @@ -32,8 +32,8 @@ or

```html
<script
src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/browser/algosdk.min.js"
integrity="sha384-PgD+QJZqpxjiZn/vLc2OPg8jbbOv7i0Scv2y3aB+VoUNIP4P93CR96QdzEQctWY9"
src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/browser/algosdk.min.js"
integrity="sha384-cXCnQHmkjqS84S5jqAp6YXjU1ynCEJaHROHklSY7eh+cCXQ3aGX0oSgJSfQgDF5y"
crossorigin="anonymous"
></script>
```
Expand Down
2 changes: 1 addition & 1 deletion examples/app_transaction_examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// makeApplicationCreateTxnFromObject, makeApplicationOptInTxnFromObject, etc.
// counterparts in your code for readability.

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, SENDER, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_accept_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: accepting assets

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const account = algosdk.generateAccount();
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_create_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: creating an asset

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { SENDER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_destroy_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: destroying an asset

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const {
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_freeze_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: freezing or unfreezing an account

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const {
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_revoke_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: revoking assets

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const {
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_send_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: sending assets

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const {
Expand Down
2 changes: 1 addition & 1 deletion examples/asset_update_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: updating asset configuration

const algosdk = require('..');
const algosdk = require('../src');

async function main() {
const {
Expand Down
2 changes: 1 addition & 1 deletion examples/generate_sender_receiver.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* for some of the other examples.
*/

const algosdk = require('..');
const algosdk = require('../src');
const { fmt } = require('./utils');

// generate accounts
Expand Down
2 changes: 1 addition & 1 deletion examples/logic_sig_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: creating a LogicSig transaction signed by a program that never approves the transfer.

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/multisig_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: manipulating multisig transactions

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, SENDER, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/notefield_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* want in the "note" field.
*/

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, SENDER, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/rekey_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: rekeying

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, SENDER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/transaction_group_example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: working with transaction groups

const algosdk = require('..');
const algosdk = require('../src');
const utils = require('./utils');

const { ALGOD_INSTANCE, SENDER, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript_example.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Example: with TypeScript

import algosdk from '../index';
import algosdk from '../src';
import utils from './utils';

const { SENDER, RECEIVER } = utils.retrieveBaseConfig();
Expand Down
4 changes: 0 additions & 4 deletions index.ts

This file was deleted.

Loading